57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
name = "netfetch"
|
|
version = "0.0.3"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_cbor = "0.11"
|
|
serde_yaml = "0.9.16"
|
|
ciborium = "0.2.2"
|
|
tokio-stream = { version = "0.1", features = ["fs"] }
|
|
tracing = "0.1.37"
|
|
async-channel = "2.3.1"
|
|
bytes = "1.6"
|
|
arrayref = "0.3"
|
|
byteorder = "1.5"
|
|
futures-util = "0.3"
|
|
md-5 = "0.10.5"
|
|
hex = "0.4.3"
|
|
regex = "1.8.4"
|
|
axum = "0.7.5"
|
|
http-body = "1"
|
|
url = "2.2"
|
|
#hyper = "1.3.1"
|
|
chrono = "0.4"
|
|
humantime = "2.1.0"
|
|
humantime-serde = "1.1.1"
|
|
pin-project = "1"
|
|
lazy_static = "1"
|
|
libc = "0.2"
|
|
slidebuf = "0.0.1"
|
|
dashmap = "6.0.1"
|
|
hashbrown = "0.14.3"
|
|
smallvec = "1.13.2"
|
|
log = { path = "../log" }
|
|
series = { path = "../series" }
|
|
serieswriter = { path = "../serieswriter" }
|
|
stats = { path = "../stats" }
|
|
scywr = { path = "../scywr" }
|
|
dbpg = { path = "../dbpg" }
|
|
serde_helper = { path = "../serde_helper" }
|
|
ingest-linux = { path = "../ingest-linux" }
|
|
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" }
|
|
mrucache = { path = "../mrucache" }
|
|
batchtools = { path = "../batchtools" }
|