-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
51 lines (46 loc) · 1.65 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
[package]
name = "aurora-cli-rs"
version = "0.1.0"
authors = ["Aurora Labs <[email protected]>"]
edition = "2021"
rust-version = "1.80.0"
homepage = "https://github.com/aurora-is-near/aurora-cli-rs"
repository = "https://github.com/aurora-is-near/aurora-cli-rs"
description = "Aurora CLI is a command line interface to bootstrap Aurora engine"
readme = "README.md"
[[bin]]
name = "aurora-cli"
path = "src/main.rs"
[features]
default = ["simple"]
simple = ["toml"]
advanced = ["near-chain-configs"]
[dependencies]
aurora-engine-precompiles = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std", "impl-serde"] }
anyhow = "1"
borsh = "1"
bs58 = "0.5"
clap = { version = "4", features = ["derive"] }
ethabi = "18"
hex = "0.4"
lazy_static = "1"
libsecp256k1 = { version = "0.7", features = ["std"] }
near-chain-configs = { version = "0.26", optional = true }
near-crypto = "0.26"
near-jsonrpc-client = "0.13"
near-jsonrpc-primitives = "0.26"
near-primitives = "0.26"
reqwest = { version = "0.12", features = ["json"] }
rand = "0.8"
rlp = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = { version = "0.8", optional = true }
shadow-rs = "0.35"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
[build-dependencies]
shadow-rs = "0.35"