47 lines
1.2 KiB
TOML
47 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-stream = { version = "0.1", features = ["fs"] }
|
|
tracing = "0.1.37"
|
|
async-channel = "2.0.0"
|
|
bytes = "1.5"
|
|
arrayref = "0.3"
|
|
byteorder = "1.4"
|
|
futures-util = "0.3"
|
|
md-5 = "0.10.5"
|
|
hex = "0.4.3"
|
|
regex = "1.8.4"
|
|
axum = "0.6.18"
|
|
http = "0.2"
|
|
url = "2.2"
|
|
hyper = "0.14"
|
|
chrono = "0.4"
|
|
humantime = "2.1.0"
|
|
humantime-serde = "1.1.1"
|
|
pin-project = "1"
|
|
lazy_static = "1"
|
|
libc = "0.2"
|
|
log = { path = "../log" }
|
|
series = { path = "../series" }
|
|
stats = { path = "../stats" }
|
|
scywr = { path = "../scywr" }
|
|
dbpg = { path = "../dbpg" }
|
|
ingest-linux = { path = "../ingest-linux" }
|
|
slidebuf = { path = "../slidebuf" }
|
|
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" }
|
|
batchtools = { path = "../batchtools" }
|