-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
54 lines (52 loc) · 2.49 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
[workspace]
members = [
"engine",
"refiner-lib",
"refiner-types",
"refiner-app",
"etc/integration-tests",
]
resolver = "2"
[workspace.package]
authors = ["Aurora Labs <[email protected]>"]
version = "0.30.0-2.4.0"
edition = "2021"
homepage = "https://github.com/aurora-is-near/aurora-standalone"
repository = "https://github.com/aurora-is-near/aurora-standalone"
license = "CC0-1.0"
[workspace.dependencies]
actix = "0.13"
anyhow = "1"
aurora-engine = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std", "tracing", "log", "impl-serde"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std", "impl-serde"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std"] }
aurora-engine-modexp = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std"] }
aurora-engine-hashchain = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["std"] }
engine-standalone-storage = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false }
engine-standalone-tracing = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.7.0", default-features = false, features = ["impl-serde"] }
borsh = { version = "1", features = ["borsh-derive"] }
byteorder = "1"
clap = { version = "4", features = ["derive"] }
derive_builder = "0.20"
fixed-hash = "0.8"
hex = "0.4"
impl-serde = "0.5"
lazy_static = "1"
lru = "0.12"
near-crypto = { git = "https://github.com/near/nearcore", tag = "2.4.0" }
near-indexer = { git = "https://github.com/near/nearcore", tag = "2.4.0" }
near-primitives = { git = "https://github.com/near/nearcore", tag = "2.4.0" }
near-lake-framework = "0.7"
prometheus = "0.13"
rlp = "0.5"
rocksdb = { version = "0.21", default-features = false, features = ["snappy", "zstd", "zlib", "bzip2"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha3 = "0.10"
tempfile = "3"
tokio = "1"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"
triehash-ethereum = { git = "https://github.com/openethereum/openethereum" }