-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (48 loc) · 1.78 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
[package]
name = "oct-cli"
version = "0.3.0"
authors = ["xsb.near <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = "0.10.0"
clap = "=3.0.0-beta.2"
clap_derive = "=3.0.0-beta.2"
clap_generate = "=3.0.0-beta.2"
chrono = "0.4.19"
dialoguer = "0.9"
# strum = "0.20"
strum = { git = "https://github.com/frol/strum", branch = "feat/discriminants-pass-through-attributes", features = ["derive"] }
strum_macros = "0.20"
smart-default = "0.6.0"
#derive_more = "0.99.9"
async-recursion = "0.3.2"
async-trait = "0.1.53"
tokio = { version = "1.0", features = ["full"] }
tokio-retry = "0.3.0"
tracing = "0.1"
anyhow = "1.0"
# Ad-hoc fix for compilation errors (rustls is used instead of openssl to ease the deployment avoiding the system dependency on openssl)
openssl = { version = "0.10", features = ["vendored"] }
base64 = "0.12.3"
hex = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.57"
dirs = "3.0"
shellexpand = "2.1.0"
url = { version = "2", features = ["serde"] }
open = "2"
shell-words = "1.0.0"
cargo-util = "0.1.1"
rand = "0.8.4"
color-eyre = "0.5"
near-crypto = "0.15"
near-primitives = "0.15"
near-sdk = "4.0.0"
near-jsonrpc-client = "0.4.1"
near-jsonrpc-primitives = "0.15"
interactive_clap = { git = "https://github.com/FroVolod/interactive-clap", rev = "23481402d7f36d9e7b0f5460f6d249bcf4c31ec5" }
interactive_clap_derive = { git = "https://github.com/FroVolod/interactive-clap", rev = "23481402d7f36d9e7b0f5460f6d249bcf4c31ec5" }
prettytable-rs = "^0.9"
appchain-registry = { git = "https://github.com/octopus-network/octopus-appchain-registry", branch = "main" }
appchain-anchor = { git = "https://github.com/octopus-network/octopus-appchain-anchor", tag = "v2.4.0" }