forked from everx-labs/ever-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 1.03 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
[package]
build = 'common/build/build.rs'
edition = '2021'
name = 'ton_vm'
version = '1.9.5'
[dependencies]
ed25519 = '1.2'
ed25519-dalek = '1.0'
failure = '0.1'
hex = '0.4'
lazy_static = '1.4'
log = '0.4'
num = '0.4'
num-traits = '0.2'
rand = '0.7'
diffy = { optional = true, version = '0.2.2' }
similar = { features = [ 'bytes' ], optional = true, version = '2.2.0' }
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.121' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '2.0.31' }
zstd = { default-features = false, optional = true, version = '0.11' }
[dev-dependencies]
criterion = '0.4'
libloading = '0.6'
log4rs = '1.2'
pretty_assertions = '1.3'
pprof = { features = [ 'criterion', 'flamegraph' ], version = '0.11' }
[features]
fift_check = [ ]
gosh = [ 'ton_block/gosh', 'diffy', 'similar', 'zstd' ]
log_file = [ ]
signature_no_check = [ ]
signature_with_id = [ 'ton_block/signature_with_id' ]
verbose = [ ]
[[bench]]
harness = false
name = 'benchmarks'
[lib]
bench = false
[profile]