2023-04-11 14:18:31 +00:00
|
|
|
[package]
|
|
|
|
name = "tributary-chain"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A micro-blockchain to provide consensus and ordering to P2P communication"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/tributary"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-11 17:42:18 +00:00
|
|
|
thiserror = "1"
|
|
|
|
|
2023-04-11 23:04:53 +00:00
|
|
|
rand_core = { version = "0.6", optional = true }
|
|
|
|
|
2023-04-11 17:42:18 +00:00
|
|
|
blake2 = "0.10"
|
|
|
|
|
|
|
|
ciphersuite = { package = "ciphersuite", path = "../../crypto/ciphersuite", features = ["ristretto"] }
|
|
|
|
schnorr = { package = "schnorr-signatures", path = "../../crypto/schnorr" }
|
|
|
|
|
2023-04-11 14:18:31 +00:00
|
|
|
tendermint = { package = "tendermint-machine", path = "./tendermint" }
|
2023-04-11 23:04:53 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand_core = "0.6"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
tests = ["rand_core"]
|