-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (42 loc) · 1.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "everscale-vm"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["proc"]
[[bench]]
name = "ever_wallet"
harness = false
[[bench]]
name = "jetton"
harness = false
[dependencies]
ahash = "0.8"
anyhow = "1.0"
bitflags = "2.4"
blake2 = "0.10.6"
bumpalo = "3.14"
castaway = "0.2.3"
dyn-clone = "1.0"
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
sha2 = "0.10.8"
thiserror = "1.0"
tracing = { version = "0.1", optional = true }
everscale-types = { version = "0.1.2", default-features = false, features = ["sync", "models"] }
everscale-vm-proc = { path = "./proc" }
everscale-crypto = "0.2.1"
[dev-dependencies]
criterion = "0.5"
hex = "0.4.3"
tracing = "0.1"
tracing-test = "0.2"
everscale-types = { version = "0.1.2", default-features = false, features = [
"sync",
"models",
"base64",
] }
everscale-asm-macros = { git = "https://github.com/broxus/everscale-asm.git", rev = "c5c00eb9c303bb14df681a7280b2d85b6fbdd41d" }
[patch.crates-io]
everscale-types = { git = "https://github.com/broxus/everscale-types.git", rev = "6e3c289f9bbf46337b11b24656a9c87ce409323e" }