|
1 | | -[package] |
2 | | -name = "aurora-cli-rs" |
3 | | -version = "0.1.0" |
4 | | -authors = ["Aurora Labs <hello@aurora.dev>"] |
5 | | -edition = "2021" |
6 | | -rust-version = "1.80.0" |
7 | | -homepage = "https://github.com/aurora-is-near/aurora-cli-rs" |
8 | | -repository = "https://github.com/aurora-is-near/aurora-cli-rs" |
9 | | -description = "Aurora CLI is a command line interface to bootstrap Aurora engine" |
10 | | -readme = "README.md" |
11 | | - |
12 | | -[lib] |
13 | | -name = "aurora_cli" |
14 | | -path = "src/lib.rs" |
15 | | - |
16 | | -[[bin]] |
17 | | -name = "aurora-cli" |
18 | | -path = "src/main.rs" |
19 | | - |
20 | | -[features] |
21 | | -default = ["simple"] |
22 | | -simple = ["toml"] |
23 | | -advanced = ["near-chain-configs"] |
24 | | - |
25 | | -[dependencies] |
26 | | -aurora-engine-precompiles = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] } |
27 | | -aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] } |
28 | | -aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std"] } |
29 | | -aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", features = ["std", "impl-serde"] } |
| 1 | +[workspace] |
| 2 | +resolver = "2" |
| 3 | +members = [ |
| 4 | + "cli", |
| 5 | + "sdk" |
| 6 | +] |
30 | 7 |
|
| 8 | +[workspace.dependencies] |
31 | 9 | anyhow = "1" |
| 10 | +async-trait = "0.1" |
32 | 11 | borsh = "1" |
33 | | -bs58 = "0.5" |
34 | | -clap = { version = "4", features = ["derive"] } |
35 | | -ethabi = "18" |
36 | 12 | hex = "0.4" |
37 | | -libsecp256k1 = { version = "0.7", features = ["std"] } |
38 | | -near-chain-configs = { version = "0.28", optional = true } |
| 13 | +near-chain-configs = "0.28" |
39 | 14 | near-crypto = "0.28" |
40 | 15 | near-jsonrpc-client = "0.15" |
41 | 16 | near-jsonrpc-primitives = "0.28" |
42 | 17 | near-primitives = "0.28" |
| 18 | +primitive-types = "0.13" |
43 | 19 | reqwest = { version = "0.12", features = ["json"] } |
44 | | -rand = "0.8" |
45 | | -rlp = "0.5" |
46 | | -serde = { version = "1", features = ["derive"] } |
47 | | -serde_json = "1" |
48 | | -toml = { version = "0.8", optional = true } |
49 | | -shadow-rs = "0.38" |
50 | | -thiserror = "2" |
51 | | -tokio = { version = "1", features = ["full"] } |
52 | | - |
53 | | -[build-dependencies] |
54 | | -shadow-rs = "0.38" |
| 20 | +tokio = "1" |
0 commit comments