-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.25 KB
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
[workspace.package]
version = "0.1.0"
authors = ["Aurora Labs <hello@aurora.dev>"]
edition = "2024"
rust-version = "1.86.0"
homepage = "https://github.com/aurora-is-near/aurora-cli-rs"
repository = "https://github.com/aurora-is-near/aurora-cli-rs"
readme = "README.md"
[workspace]
resolver = "3"
members = [
"cli", "newcli",
"sdk"
]
[workspace.dependencies]
anyhow = "1"
aurora-engine-precompiles = { version = "1", features = ["std"] }
aurora-engine-sdk = { version = "1", features = ["std"] }
aurora-engine-transactions = { version = "1", features = ["std"] }
aurora-engine-types = { version = "1", features = ["std", "impl-serde"] }
base64 = "0.22"
borsh = "1"
bs58 = "0.5"
clap = "4"
ethabi = "18"
hex = "0.4"
libsecp256k1 = "0.7"
near-chain-configs = "0.30"
near-contract-standards = "5"
near-crypto = "0.30"
near-gas = "0.3"
near-sdk = "5"
near-token = { version = "0.3", features = ["borsh", "serde"] }
near-jsonrpc-client = "0.17"
near-jsonrpc-primitives = "0.30"
near-primitives = "0.30"
near-workspaces = "0.20"
rand = "0.8"
regex = "1"
reqwest = { version = "0.12", features = ["json"] }
rlp = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shadow-rs = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
toml = "0.8"