ghost-telemetry-backend/common/Cargo.toml
Uncle Stinky 51e78f29e7
initial commit, building blocks for the later usage
Signed-off-by: Uncle Stinky <uncle.stinky@ghostchain.io>
2024-11-18 16:58:38 +03:00

36 lines
1016 B
TOML

[package]
name = "ghost-telemetry-common"
version = "0.1.0"
authors = ["Uncle Stinky uncle.stinky@ghostchain.io"]
edition = "2021"
[dependencies]
anyhow = "1.0.42"
arrayvec = { version = "0.7.1", features = ["serde"] }
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
bimap = "0.6.1"
bytes = "1.0.1"
flume = "0.10.8"
fnv = "1.0.7"
futures = "0.3.15"
hex = "0.4.3"
http = "0.2.4"
hyper = { version = "0.14.11", features = ["full"] }
log = "0.4.14"
num-traits = "0.2"
pin-project-lite = "0.2.7"
primitive-types = { version = "0.12.1", features = ["serde"] }
rustc-hash = "1.1.0"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = { version = "1.0.64", features = ["raw_value"] }
sha-1 = { version = "0.10.1", default-features = false }
soketto = "0.7.1"
thiserror = "1.0.24"
tokio = { version = "1.10.1", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["compat"] }
tokio-rustls = "0.23.4"
webpki-roots = "0.22.4"
[dev-dependencies]
bincode = "1.3.3"