forked from everx-labs/ever-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
99 lines (86 loc) · 3.3 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
90
91
92
93
94
95
96
97
98
99
[package]
authors = [ 'TON DEV SOLUTIONS LTD <support@tonlabs.io>' ]
build = 'build.rs'
description = 'command line tool for TON blockchain'
documentation = 'https://docs.everos.dev/'
edition = '2021'
homepage = 'https://docs.everos.dev/'
keywords = [
'TON',
'SDK',
'smart contract',
'tonlabs',
'solidity'
]
license = 'Apache-2.0'
name = 'tonos-cli'
readme = 'README.md'
repository = 'https://github.com/tonlabs/tonos-cli'
version = '0.34.2'
default-run = 'tonos-cli'
[features]
sold = ["dep:sold"]
[dependencies]
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'
regex = '1.5'
reqwest = '0.11'
serde_derive = '1.0'
serde_json = '1.0'
sha2 = '0.9.5'
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/ever-abi.git', tag = '2.3.65' }
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.28' }
ton_block_json = { git = 'https://github.com/tonlabs/ever-block-json.git', tag = '0.7.95' }
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.41.1' }
ton_executor = { git = 'https://github.com/tonlabs/ever-executor.git', tag = '1.15.173' }
ton_labs_assembler = { git = 'https://github.com/tonlabs/ever-assembler.git', tag = '1.2.77' }
ton_sdk = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.41.1' }
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '1.12.7' }
ton_vm = { git = 'https://github.com/tonlabs/ever-vm.git', tag = '1.8.114' }
sold = { git = 'https://github.com/tonlabs/TON-Solidity-Compiler.git', tag = '0.66.0', optional = true }
[dev-dependencies]
assert_cmd = '2.0'
lazy_static = '1.4'
predicates = '2.1'
string-error = '0.1.0'
[[bin]]
name = "tonos-cli"
path = "src/main.rs"
[[bin]]
name = "__tonos-cli_completion"
path = "src/completion.rs"
[patch.'https://github.com/tonlabs/ton-labs-abi.git']
ton_abi = { git = 'https://github.com/tonlabs/ever-abi.git', tag = '2.3.65' }
[patch.'https://github.com/tonlabs/ton-labs-block.git']
ton_block = { git = 'https://github.com/tonlabs/ever-block.git', tag = '1.9.18' }
[patch.'https://github.com/tonlabs/ton-labs-block-json.git']
ton_block_json = { git = 'https://github.com/tonlabs/ever-block-json.git', tag = '0.7.95' }
[patch.'https://github.com/tonlabs/TON-SDK.git']
ton_client = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.41.1' }
ton_sdk = { git = 'https://github.com/tonlabs/ever-sdk.git', tag = '1.41.1' }
[patch.'https://github.com/tonlabs/ton-labs-executor.git']
ton_executor = { git = 'https://github.com/tonlabs/ever-executor.git', tag = '1.15.173' }
[patch.'https://github.com/tonlabs/ton-labs-assembler.git']
ton_labs_assembler = { git = 'https://github.com/tonlabs/ever-assembler.git', tag = '1.2.77' }
[patch.'https://github.com/tonlabs/ton-labs-types.git']
ton_types = { git = 'https://github.com/tonlabs/ever-types.git', tag = '1.12.7' }
[patch.'https://github.com/tonlabs/ton-labs-vm.git']
ton_vm = { git = 'https://github.com/tonlabs/ever-vm.git', tag = '1.8.114' }