Files
daqingest/netfetch/Cargo.toml
2023-08-24 10:23:39 +02:00

44 lines
1.2 KiB
TOML

[package]
name = "netfetch"
version = "0.0.3"
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_cbor = "0.11"
serde_yaml = "0.9.16"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs", "tracing"] }
tokio-stream = { version = "0.1", features = ["fs"] }
tracing = "0.1.37"
async-channel = "1.9.0"
bytes = "1.4"
arrayref = "0.3"
byteorder = "1.4"
futures-util = "0.3"
scylla = "0.9.0"
tokio-postgres = "0.7.8"
md-5 = "0.10"
hex = "0.4"
libc = "0.2"
regex = "1.8.4"
axum = "0.6.18"
http = "0.2"
url = "2.2"
hyper = "0.14"
chrono = "0.4"
humantime = "2.1"
humantime-serde = "1.1"
pin-project = "1"
lazy_static = "1"
log = { path = "../log" }
stats = { path = "../stats" }
err = { path = "../../daqbuffer/crates/err" }
netpod = { path = "../../daqbuffer/crates/netpod" }
items_0 = { path = "../../daqbuffer/crates/items_0" }
items_2 = { path = "../../daqbuffer/crates/items_2" }
streams = { path = "../../daqbuffer/crates/streams" }
taskrun = { path = "../../daqbuffer/crates/taskrun" }
bitshuffle = { path = "../../daqbuffer/crates/bitshuffle" }