forked from everx-labs/ever-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.04 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
[package]
edition = "2021"
name = "tvm_vm"
rust-version = "1.75.0"
version = "2.1.0"
[dependencies]
anyhow = "1.0.79"
diffy = { optional = true, version = "0.3.0" }
ed25519 = "2.2.3"
ed25519-dalek = "2.1.0"
hex = "0.4.3"
lazy_static = "1.4.0"
log = "0.4.20"
num = "0.4.1"
num-traits = "0.2.17"
rand = "0.8.5"
similar = { features = ["bytes"], optional = true, version = "2.4.0" }
thiserror = "1.0.56"
tvm_block = { git = "https://github.com/tvmlabs/tvm-block", tag = "2.0.0" }
tvm_types = { git = "https://github.com/tvmlabs/tvm-types", tag = "3.0.1" }
zstd = { default-features = false, optional = true, version = "0.13.0" }
[dev-dependencies]
criterion = "0.5.1"
libloading = "0.8.1"
log4rs = "1.2.0"
pprof = { features = ["criterion", "flamegraph"], version = "0.13.0" }
pretty_assertions = "1.4.0"
[features]
fift_check = []
gosh = ["tvm_block/gosh", "diffy", "similar", "zstd"]
log_file = []
signature_no_check = []
signature_with_id = ["tvm_block/signature_with_id"]
verbose = []
[[bench]]
harness = false
name = "benchmarks"
[lib]
bench = false
[profile]