Files
serai/substrate/tendermint/client/Cargo.toml

45 lines
1.7 KiB
TOML
Raw Normal View History

[package]
name = "sc_tendermint"
version = "0.1.0"
description = "Tendermint client for Substrate"
license = "AGPL-3.0-only"
2022-10-27 06:33:58 -04:00
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/tendermint/client"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
edition = "2021"
publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
2022-10-20 03:50:06 -04:00
async-trait = "0.1"
2022-10-21 23:36:24 -04:00
log = "0.4"
futures = "0.3"
2022-10-22 01:43:07 -04:00
tokio = { version = "1", features = ["sync", "rt"] }
2022-07-16 20:53:28 -04:00
sp-core = { git = "https://github.com/serai-dex/substrate" }
2022-10-20 03:50:06 -04:00
sp-application-crypto = { git = "https://github.com/serai-dex/substrate" }
sp-inherents = { git = "https://github.com/serai-dex/substrate" }
sp-staking = { git = "https://github.com/serai-dex/substrate" }
2022-10-20 03:50:06 -04:00
sp-blockchain = { git = "https://github.com/serai-dex/substrate" }
sp-runtime = { git = "https://github.com/serai-dex/substrate" }
2022-10-20 03:50:06 -04:00
sp-api = { git = "https://github.com/serai-dex/substrate" }
sp-consensus = { git = "https://github.com/serai-dex/substrate" }
2022-10-27 08:44:53 -04:00
sp-tendermint = { path = "../primitives" }
2022-07-16 20:53:28 -04:00
sc-transaction-pool = { git = "https://github.com/serai-dex/substrate" }
sc-executor = { git = "https://github.com/serai-dex/substrate" }
2022-07-16 20:53:28 -04:00
sc-network = { git = "https://github.com/serai-dex/substrate" }
2022-10-30 01:21:10 -04:00
sc-network-gossip = { git = "https://github.com/serai-dex/substrate" }
sc-service = { git = "https://github.com/serai-dex/substrate" }
sc-client-api = { git = "https://github.com/serai-dex/substrate" }
sc-consensus = { git = "https://github.com/serai-dex/substrate" }
2022-07-16 20:53:28 -04:00
substrate-prometheus-endpoint = { git = "https://github.com/serai-dex/substrate" }
2022-10-27 08:44:53 -04:00
tendermint-machine = { path = "../machine", features = ["substrate"] }