2022-07-15 04:05:00 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-node"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Serai network node, built over Substrate"
|
|
|
|
license = "AGPL-3.0-only"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/node"
|
2022-07-15 04:05:00 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "serai-node"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-20 05:05:36 +00:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
2022-07-17 00:53:28 +00:00
|
|
|
sc-cli = { git = "https://github.com/serai-dex/substrate", features = ["wasmtime"] }
|
|
|
|
sp-core = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-executor = { git = "https://github.com/serai-dex/substrate", features = ["wasmtime"] }
|
|
|
|
sc-service = { git = "https://github.com/serai-dex/substrate", features = ["wasmtime"] }
|
|
|
|
sc-telemetry = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-keystore = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-transaction-pool = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-transaction-pool-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-consensus = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-client-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-timestamp = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-inherents = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-keyring = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
frame-system = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
pallet-transaction-payment = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
# These dependencies are used for the node template's RPCs
|
2022-10-20 05:05:36 +00:00
|
|
|
jsonrpsee = { version = "0.15", features = ["server"] }
|
2022-07-17 00:53:28 +00:00
|
|
|
sc-rpc = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-rpc-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-blockchain = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-block-builder = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
substrate-frame-rpc-system = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
pallet-transaction-payment-rpc = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
# These dependencies are used for runtime benchmarking
|
2022-07-17 00:53:28 +00:00
|
|
|
frame-benchmarking = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
frame-benchmarking-cli = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
# Local dependencies
|
|
|
|
serai-consensus = { path = "../consensus" }
|
|
|
|
serai-runtime = { path = "../runtime" }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2022-07-17 00:53:28 +00:00
|
|
|
substrate-build-script-utils = { git = "https://github.com/serai-dex/substrate.git" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2022-09-29 18:33:09 +00:00
|
|
|
runtime-benchmarks = [
|
|
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
|
|
"frame-benchmarking-cli/runtime-benchmarks",
|
|
|
|
"serai-runtime/runtime-benchmarks"
|
|
|
|
]
|