forked from broxus/nekoton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 1.25 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
[package]
name = "nekoton-abi"
version = "0.13.0"
authors = [
"Alexey Pashinov <[email protected]>",
"Vladimir Petrzhikovskiy <[email protected]>",
"Ivan Kalinin <[email protected]>",
]
rust-version = "1.62.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
base64 = "0.13"
hex = "0.4"
log = "0.4"
num-bigint = "0.4"
rustc-hash = "1.1.0"
num-traits = "0.2"
once_cell = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smallvec = { version = "1.9", features = ["const_generics", "union", "write"] }
thiserror = "1.0"
ed25519-dalek = { git = "https://github.com/broxus/ed25519-dalek.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi" }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git" }
ton_executor = { git = "https://github.com/broxus/ton-labs-executor.git" }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
ton_vm = { git = "https://github.com/broxus/ton-labs-vm.git" }
nekoton-derive = { path = "../nekoton-derive", optional = true }
nekoton-utils = { path = "../nekoton-utils" }
[dev-dependencies]
nekoton-contracts = { path = "../nekoton-contracts" }
[features]
default = []
derive = ["nekoton-derive"]
web = ["ton_abi/web", "nekoton-derive/web", "nekoton-utils/web"]