mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
daa88a051f
It was needed for contracts, which has since been removed. We now no longer need it.
80 lines
3.1 KiB
TOML
80 lines
3.1 KiB
TOML
[package]
|
|
name = "serai-node"
|
|
version = "0.1.0"
|
|
description = "Serai network node, built over Substrate"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/node"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "serai-node"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
|
|
log = "0.4"
|
|
|
|
futures = { version = "0.3" }
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
jsonrpsee = { version = "0.16", features = ["server"] }
|
|
|
|
sp-core = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-application-crypto = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-keystore = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-keyring = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-inherents = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-blockchain = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-api = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-block-builder = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-consensus = { 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-basic-authorship = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-executor = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-service = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-client-db = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-client-api = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-network = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-consensus = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-telemetry = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-cli = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
frame-system = { git = "https://github.com/serai-dex/substrate" }
|
|
frame-benchmarking = { git = "https://github.com/serai-dex/substrate" }
|
|
frame-benchmarking-cli = { git = "https://github.com/serai-dex/substrate" }
|
|
pallet-transaction-payment = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
sc-rpc = { git = "https://github.com/serai-dex/substrate" }
|
|
sc-rpc-api = { 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" }
|
|
|
|
serai-primitives = { path = "../serai/primitives" }
|
|
|
|
validator-sets-pallet = { path = "../validator-sets/pallet" }
|
|
|
|
sp-tendermint = { path = "../tendermint/primitives" }
|
|
pallet-tendermint = { path = "../tendermint/pallet", default-features = false }
|
|
serai-runtime = { path = "../runtime" }
|
|
sc-tendermint = { path = "../tendermint/client" }
|
|
|
|
[build-dependencies]
|
|
substrate-build-script-utils = { git = "https://github.com/serai-dex/substrate.git" }
|
|
|
|
[features]
|
|
default = []
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-benchmarking-cli/runtime-benchmarks",
|
|
|
|
"serai-runtime/runtime-benchmarks",
|
|
]
|