Skip to content

Commit 6e2d7b8

Browse files
committed
feat: init split sdk from aurora-cli
1 parent f9d58a5 commit 6e2d7b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+500
-80
lines changed

Cargo.lock

Lines changed: 96 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,20 @@
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+
]
307

8+
[workspace.dependencies]
319
anyhow = "1"
10+
async-trait = "0.1"
3211
borsh = "1"
33-
bs58 = "0.5"
34-
clap = { version = "4", features = ["derive"] }
35-
ethabi = "18"
3612
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"
3914
near-crypto = "0.28"
4015
near-jsonrpc-client = "0.15"
4116
near-jsonrpc-primitives = "0.28"
4217
near-primitives = "0.28"
18+
primitive-types = "0.13"
4319
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

Comments
 (0)