2022-07-15 00:05:00 -04:00
|
|
|
[package]
|
2022-10-30 10:54:17 -04:00
|
|
|
name = "sc_tendermint"
|
2022-07-15 00:05:00 -04:00
|
|
|
version = "0.1.0"
|
2022-10-30 10:54:17 -04:00
|
|
|
description = "Tendermint client for Substrate"
|
2022-07-15 00:05:00 -04:00
|
|
|
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"
|
2022-07-15 00:05:00 -04:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
publish = false
|
|
|
|
|
|
2022-10-15 23:46:22 -04:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
2022-07-15 00:05:00 -04:00
|
|
|
[dependencies]
|
2022-10-20 03:50:06 -04:00
|
|
|
async-trait = "0.1"
|
|
|
|
|
|
2022-10-21 23:36:24 -04:00
|
|
|
log = "0.4"
|
|
|
|
|
|
2022-10-22 03:41:49 -04:00
|
|
|
futures = "0.3"
|
2022-10-22 01:43:07 -04:00
|
|
|
tokio = { version = "1", features = ["sync", "rt"] }
|
2022-10-21 03:17:02 -04:00
|
|
|
|
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" }
|
2022-10-27 05:05:41 -04:00
|
|
|
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" }
|
2022-10-21 03:17:02 -04:00
|
|
|
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" }
|
2022-10-21 03:17:02 -04:00
|
|
|
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" }
|
2022-10-21 03:17:02 -04:00
|
|
|
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-15 00:05:00 -04:00
|
|
|
|
2022-07-16 20:53:28 -04:00
|
|
|
substrate-prometheus-endpoint = { git = "https://github.com/serai-dex/substrate" }
|
2022-07-15 00:05:00 -04:00
|
|
|
|
2022-10-27 08:44:53 -04:00
|
|
|
tendermint-machine = { path = "../machine", features = ["substrate"] }
|