forked from everx-labs/ever-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
89 lines (82 loc) · 2.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
authors = [ 'GOSH' ]
build = 'build.rs'
description = 'command line tool for GOSH'
documentation = 'https://docs.gosh.sh/'
edition = '2021'
homepage = 'https://gosh.sh/'
keywords = [
'TON',
'SDK',
'smart contract',
'tonlabs',
'solidity',
'gosh',
'gosh-sh'
]
license = 'Apache-2.0'
name = 'gosh-cli'
readme = 'README.md'
repository = 'https://github.com/gosh-sh/gosh-cli'
version = '0.3.1'
[profile.profiling]
debug = 1
inherits = 'release'
[profile.dev]
# Must always use panic = "abort" to avoid needing to define the unstable eh_personality lang item.
panic = "abort"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.
[features]
sold = ["dep:sold"]
[dependencies]
anyhow = "1.0.71"
async-trait = '0.1.42'
base64 = '0.13'
chrono = '0.4'
clap = '2.32'
crc = '3.0'
ed25519-dalek = '1.0'
failure = '0.1'
futures = '0.3'
hex = '0.4'
indicatif = '0.16'
lazy_static = '1.4'
num-bigint = '0.4'
num-traits = '0.2'
qr2term = '0.2'
proc-macro2 = "=1.0.46"
regex = '1.5'
reqwest = '0.11'
serde_derive = '1.0'
serde_json = '1.0'
sha2 = '0.10'
simplelog = '0.8'
tokio-retry = '0.3'
log = { features = [ 'std' ], version = '0.4' }
serde = { features = [ 'derive' ], version = '1.0' }
tokio = { default-features = false, features = [ 'full' ], version = '1.21' }
url = '2.3.1'
ton_abi = { git = 'https://github.com/tonlabs/ton-labs-abi.git', tag = '2.3.45' }
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block.git', tag = '1.9.10' }
ton_block_json = { git = 'https://github.com/tonlabs/ton-labs-block-json.git', tag = '0.7.75' }
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.39.0' }
ton_executor = { default-features = false, git = 'https://github.com/tonlabs/ton-labs-executor.git', tag = '1.15.139' }
ton_labs_assembler = { git = 'https://github.com/tonlabs/ton-labs-assembler.git', tag = '1.2.74' }
ton_sdk = { git = 'https://github.com/tonlabs/TON-SDK.git', tag = '1.39.0' }
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types.git', tag = '1.12.4' }
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm.git', tag = '1.8.79' }
sold = { git = 'https://github.com/tonlabs/TON-Solidity-Compiler.git', tag = '0.66.0', optional = true }
openssl = { version = "0.10", features = ["vendored"] }
[dev-dependencies]
assert_cmd = '2.0'
lazy_static = '1.4'
predicates = '2.1'
string-error = '0.1.0'
[[bin]]
name = "gosh-cli"
path = "src/main.rs"