30 lines
780 B
TOML
30 lines
780 B
TOML
|
[package]
|
||
|
name = "ghost-telemetry-shard"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Uncle Stinky uncle.stinky@ghostchain.io"]
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.42"
|
||
|
bincode = "1.3.3"
|
||
|
flume = "0.10.8"
|
||
|
futures = "0.3.15"
|
||
|
hex = "0.4.3"
|
||
|
http = "0.2.4"
|
||
|
hyper = "0.14.11"
|
||
|
log = "0.4.14"
|
||
|
num_cpus = "1.13.0"
|
||
|
primitive-types = { version = "0.12.1", features = ["serde"] }
|
||
|
serde = { version = "1.0.126", features = ["derive"] }
|
||
|
serde_json = "1.0.64"
|
||
|
simple_logger = "4.0.0"
|
||
|
soketto = "0.7.1"
|
||
|
thiserror = "1.0.25"
|
||
|
tokio = { version = "1.10.1", features = ["full"] }
|
||
|
tokio-util = { version = "0.7.4", features = ["compat"] }
|
||
|
common = { package = "ghost-telemetry-common", path = "../common" }
|
||
|
structopt = "0.3.21"
|
||
|
|
||
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
||
|
jemallocator = "0.5.0"
|