fabaccess-bffh/runtime/console/Cargo.toml

31 lines
862 B
TOML
Raw Normal View History

[package]
name = "console"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
console-api = "0.3"
2022-06-21 19:11:57 +02:00
prost-types = "0.10"
2022-06-21 16:20:44 +02:00
tonic = { version = "0.7.2", default_features = false, features = [] }
hyper = { version = "0.14", default_features = false, features = ["http2", "server", "stream"] }
thread_local = "1.1"
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", default_features = false, features = ["registry"] }
2022-06-21 19:11:57 +02:00
crossbeam-utils = "0.8"
crossbeam-channel = "0.5"
async-net = "1.6"
async-compat = "0.2"
async-channel = "1.6"
async-oneshot = "0.5"
async-io = "1.7"
tokio-util = "0.7"
futures-util = "0.3"
tokio = { version = "1.19", default_features = false, features = []}
2022-06-21 22:23:55 +02:00
hdrhistogram = "7.5"
[dev-dependencies]
tracing-subscriber = "0.3"