-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
112 lines (98 loc) · 5.51 KB
/
Cargo.toml
File metadata and controls
112 lines (98 loc) · 5.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
members = [
"client",
"client/codegen",
"node",
"runtime",
"pallets/*",
"pallets/*/api",
"pallets/*/rpc",
"test-utils",
"xtask",
"project-selector",
"mcp",
]
resolver = "2"
[workspace.package]
authors = ["Renlabs <contact@renlabs.dev>"]
edition = "2024"
[workspace.lints.clippy]
all = "deny"
arithmetic_side_effects = "deny"
indexing_slicing = "deny"
panicking_unwrap = "deny"
out_of_bounds_indexing = "deny"
match_bool = "deny"
infinite_loop = "deny"
[workspace.dependencies]
# Local
torus-node = { path = "./node", default-features = false }
torus-runtime = { path = "./runtime", default-features = false }
torus-client = { path = "./client", default-features = false }
pallet-governance = { path = "./pallets/governance", default-features = false }
pallet-governance-api = { path = "./pallets/governance/api", default-features = false }
pallet-authority-admin = { path = "./pallets/authority-admin", default-features = false }
pallet-emission0 = { path = "./pallets/emission0", default-features = false }
pallet-emission0-api = { path = "./pallets/emission0/api", default-features = false }
pallet-faucet = { path = "./pallets/faucet", default-features = false }
pallet-torus0 = { path = "./pallets/torus0", default-features = false }
pallet-torus0-api = { path = "./pallets/torus0/api", default-features = false }
pallet-torus0-rpc = { path = "./pallets/torus0/rpc", default-features = false }
pallet-permission0 = { path = "./pallets/permission0", default-features = false }
pallet-permission0-api = { path = "./pallets/permission0/api", default-features = false }
pallet-permission0-rpc = { path = "./pallets/permission0/rpc", default-features = false }
test-utils.path = "./test-utils"
# Substrate
codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false }
scale-info = { version = "2.11.1", default-features = false }
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "stable2409", default-features = false }
substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "stable2409", default-features = false }
# Utils
async-trait = "0.1.88"
num-traits = { version = "0.2.19", default-features = false, features = [
"libm",
] }
bitflags = { version = "2.9.1", default-features = false }
rand = { version = "0.9.1", default-features = false }
lazy_static = { version = "1.5.0" }
libm = { version = "0.2.15", default-features = false }
tracing-subscriber = "0.3.19"
tracing = "0.1.41"
# Frontier / EVM
fc-api = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-cli = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-consensus = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-db = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-mapping-sync = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-rpc = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", features = [
"rpc-binary-search-estimate",
] }
fc-rpc-core = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fc-storage = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fp-account = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553" }
fp-dynamic-fee = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
fp-evm = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
fp-rpc = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
fp-self-contained = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-ethereum = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-evm = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-evm-chain-id = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-evm-precompile-modexp = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-evm-precompile-sha3fips = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
pallet-evm-precompile-simple = { git = "https://github.com/paritytech/frontier.git", rev = "105bc38ac417de999721d09c8427fdb80eb78553", default-features = false }
keccak-hash = { git = "https://github.com/paritytech/parity-common", rev = "f0dade11ac0b2450e6a54f36035f74b2b8ce4c00" }
# CLI
clap = { version = "4.5.22", features = ["derive"] }
serde = "1.0.219"
serde_json = { version = "1.0", default-features = false }
# RPC
jsonrpsee = { version = "0.24", features = ["full"] }
# Async
futures = "0.3"
futures-timer = "3"
tokio = "1.47.1"
anyhow = "1.0.98"
paste = "1.0.15"
# Mcp
rmcp = "0.4.1"
schemars = "1.0.4"