-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
43 lines (39 loc) · 1.12 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
[package]
authors = [ 'EverX Labs Ltd <[email protected]>' ]
description = 'TVM Linker'
edition = '2021'
keywords = [ 'linker', 'TVM', 'everx-labs' ]
license-file = 'LICENSE.md'
name = 'tvm_linker'
readme = 'README.md'
repository = 'https://github.com/everx-labs/TVM-linker'
version = '0.21.6'
[[bin]]
name = 'tvm_linker'
path = 'src/main.rs'
[dependencies]
anyhow = '1.0'
base64 = '0.13'
clap = '2.33'
crc = '3.0'
hex = '0.4'
lazy_static = '1.4'
log = '0.4'
num = '0.4'
num-traits = '0.2'
rand = '0.8'
regex = '1'
serde = { features = [ 'derive' ], version = '1.0' }
serde_json = '1.0'
sha2 = '0.10'
simplelog = '0.6'
thiserror = '1.0'
ever_abi = { git = 'https://github.com/everx-labs/ever-abi.git', tag = '2.7.2' }
ever_assembler = { features = [ 'gosh' ], git = 'https://github.com/everx-labs/ever-assembler.git', tag = '1.6.14' }
ever_block = { features = [ 'gosh' ], git = 'https://github.com/everx-labs/ever-block.git', tag = '1.11.11' }
ever_vm = { features = [ 'gosh' ], git = 'https://github.com/everx-labs/ever-vm.git', tag = '2.2.12' }
[dev-dependencies]
assert_cmd = '2.0.5'
predicates = '3.0.3'
rayon = '1.5.3'
similar = '2.2.0'