-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 997 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[workspace.package]
edition = "2021"
authors = ["Rexagon <[email protected]>", "MrWad3r <[email protected]>"]
rust-version = "1.81.0"
repository = "https://github.com/broxus/tycho-vm"
license = "MIT OR Apache-2.0"
[workspace]
resolver = "2"
members = ["executor", "vm", "vm-proc"]
[workspace.dependencies]
ahash = "0.8"
anyhow = "1.0"
bitflags = "2.4"
blake2 = "0.10.6"
criterion = "0.5"
darling = "0.20"
dyn-clone = "1.0"
everscale-crypto = "0.3.0"
everscale-types = { version = "0.1.2", default-features = false }
hex = "0.4.3"
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.8"
sha2 = "0.10.8"
syn = "2.0"
thiserror = "2.0"
tracing = "0.1"
tracing-test = "0.2"
everscale-asm-macros = { git = "https://github.com/broxus/everscale-asm.git", rev = "81e7aab4a970cea76f48e583e09bf7a1886661fe" }
[patch.crates-io]
everscale-types = { git = "https://github.com/broxus/everscale-types.git", rev = "7128872475df48255355d8448949614936c84ca6" }