-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (58 loc) · 2.41 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
55
56
57
58
59
60
61
62
63
[workspace]
members = [
"rust-client",
"archive-service",
"db",
"api",
"config"
]
resolver = "2"
[profile.release]
panic = "unwind"
[workspace.package]
authors = ["Selendra"]
edition = "2021"
repository = "https://github.com/selendra/explorer"
[workspace.dependencies]
tokio = { version = "1.24", features = ["rt-multi-thread", "macros", "time", "signal"] }
codec = { package = "parity-scale-codec", version = "3.6.1", features = ['derive'] }
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
utoipa-swagger-ui = { version = "8.0.3", features = ["actix-web"] }
validator = { version = "0.19.0", features = ["derive"] }
clap = { version = "4.5.21", features = ["derive"] }
surrealdb = { version = "2.0.4" }
tracing-subscriber = "0.3.18"
rust_decimal = "1.36.0"
serde_json = "1.0.133"
env_logger = "0.11.5"
lazy_static = "1.5.0"
tokio-util = "0.7.8"
once_cell = "1.20.2"
actix-web = "4.9.0"
futures = "0.3.28"
tracing = "0.1.40"
dotenv = "0.15.0"
anyhow = "1.0.93"
ethers = "2.0.14"
utoipa = "5.2.0"
rayon= "1.10.0"
rand = "0.8.5"
log = "0.4.22"
hex = "0.4.3"
# Selendra dependencies
sp-core = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-runtime = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
sp-staking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
frame-support = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
frame-system = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
pallet-balances = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
pallet-staking = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
pallet-session = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
pallet-identity = { git = "https://github.com/selendra/polkadot-sdk", branch = "selendra-1.6.0" }
substrate-api-client = { git = "https://github.com/selendra/substrate-api-client.git", branch = "selendra", default-features = false, features = ["jsonrpsee-client"] }
selendra-runtime = { git = "https://github.com/selendra/selendra", tag = "v2.0.0" }
selendra-primitives = { git = "https://github.com/selendra/selendra", tag = "v2.0.0" }
# Local dependencies
selendra-rust-client = { path = "rust-client"}
selendra-db = { path = "db"}
selendra-config = { path = "config"}