-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
53 lines (50 loc) · 1.74 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
[package]
authors = [ 'EverX Labs Ltd <support@everx.dev>' ]
build = 'build.rs'
default-run = 'ever-cli'
description = 'command line tool for TVM blockchain'
documentation = 'https://docs.everos.dev/'
edition = '2021'
homepage = 'https://docs.everos.dev/'
keywords = [ 'TVM', 'SDK', 'smart-contract', 'everx-labs', 'solidity' ]
license = 'Apache-2.0'
name = 'ever-cli'
readme = 'README.md'
repository = 'https://github.com/everx-labs/ever-cli'
version = '0.44.0'
[dependencies]
anyhow = '1.0'
async-trait = '0.1.42'
base64 = '0.13'
chrono = '0.4'
clap = '2.32'
futures = '0.3'
hex = '0.4'
indicatif = '0.17'
log = { features = [ 'std' ], version = '0.4' }
num-bigint = '0.4'
num-traits = '0.2'
qr2term = '0.2'
regex = '1.5'
reqwest = '0.12'
serde = { features = [ 'derive' ], version = '1.0' }
serde_derive = '1.0'
serde_json = '1.0'
simplelog = '0.8'
thiserror = '1.0'
tokio = { default-features = false, features = [ 'full' ], version = '1.21' }
tokio-retry = '0.3'
url = '2.3.1'
ever_abi = { git = 'https://github.com/everx-labs/ever-abi.git', tag = '2.8.1' }
ever_assembler = { git = 'https://github.com/everx-labs/ever-assembler.git', tag = '1.8.0' }
ever_block = { git = 'https://github.com/everx-labs/ever-block.git', tag = '1.11.20' }
ever_block_json = { git = 'https://github.com/everx-labs/ever-block-json.git', tag = '0.9.37' }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.1' }
ever_executor = { git = 'https://github.com/everx-labs/ever-executor.git', tag = '1.18.22' }
ever_sdk = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.49.1' }
ever_vm = { git = 'https://github.com/everx-labs/ever-vm.git', tag = '2.2.21' }
[dev-dependencies]
assert_cmd = '2.0'
lazy_static = '1.4'
predicates = '2.1'
string-error = '0.1.0'