mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
33 lines
1.4 KiB
TOML
33 lines
1.4 KiB
TOML
[package]
|
|
name = "serai-consensus"
|
|
version = "0.1.0"
|
|
description = "Serai consensus module"
|
|
license = "AGPL-3.0-only"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
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" }
|
|
|
|
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" }
|
|
|
|
substrate-prometheus-endpoint = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
sc-client-api = { git = "https://github.com/serai-dex/substrate" }
|
|
sp-api = { git = "https://github.com/serai-dex/substrate" }
|
|
|
|
serai-runtime = { path = "../runtime" }
|
|
|
|
tokio = "1.15"
|