Files
daqbuffer/crates/disk/Cargo.toml
2025-02-12 09:30:40 +01:00

45 lines
1.5 KiB
TOML

[package]
name = "disk"
version = "0.0.2"
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
edition = "2021"
[lib]
path = "src/disk.rs"
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde_cbor = "0.11.2"
chrono = { version = "0.4.39", features = ["serde"] }
tokio-stream = {version = "0.1.17", features = ["fs"]}
async-channel = "1.9.0"
crossbeam = "0.8.4"
bytes = "1.10.0"
crc32fast = "1.4.2"
arrayref = "0.3.9"
byteorder = "1.5.0"
futures-util = "0.3.31"
async-stream = "0.3.6"
tracing = "0.1.41"
tracing-futures = { version = "0.2.5", features = ["futures-03", "std-future"] }
fs2 = "0.4.3"
libc = "0.2.169"
hex = "0.4.3"
num-traits = "0.2.19"
num-derive = "0.4.2"
url = "2.5.4"
tiny-keccak = { version = "2.0", features = ["sha3"] }
daqbuf-err = { path = "../../../daqbuf-err" }
taskrun = { path = "../taskrun" }
netpod = { path = "../../../daqbuf-netpod", package = "daqbuf-netpod" }
query = { path = "../../../daqbuf-query", package = "daqbuf-query" }
dbconn = { path = "../dbconn" }
parse = { path = "../../../daqbuf-parse", package = "daqbuf-parse" }
items_0 = { path = "../../../daqbuf-items-0", package = "daqbuf-items-0" }
items_2 = { path = "../../../daqbuf-items-2", package = "daqbuf-items-2" }
streams = { path = "../../../daqbuf-streams", package = "daqbuf-streams" }
streamio = { path = "../streamio" }
httpclient = { path = "../httpclient" }
bitshuffle = { path = "../../../daqbuf-bitshuffle", package = "daqbuf-bitshuffle" }