2022-07-15 04:05:00 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-consensus"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Serai consensus module"
|
|
|
|
license = "AGPL-3.0-only"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/consensus"
|
2022-07-15 04:05:00 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
2022-10-16 03:46:22 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2022-07-15 04:05:00 +00:00
|
|
|
[dependencies]
|
2022-07-17 00:53:28 +00:00
|
|
|
sp-core = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-trie = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-timestamp = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-consensus = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-consensus = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-transaction-pool = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-basic-authorship = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-consensus-pow = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-consensus-pow = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
2022-07-17 00:53:28 +00:00
|
|
|
sc-network = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-service = { git = "https://github.com/serai-dex/substrate", features = ["wasmtime"] }
|
|
|
|
sc-executor = { git = "https://github.com/serai-dex/substrate", features = ["wasmtime"] }
|
|
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
2022-07-17 00:53:28 +00:00
|
|
|
substrate-prometheus-endpoint = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
2022-07-17 00:53:28 +00:00
|
|
|
sc-client-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sp-api = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
serai-runtime = { path = "../runtime" }
|
|
|
|
|
2022-07-27 09:43:23 +00:00
|
|
|
tokio = "1"
|