41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
[package]
|
|
name = "daqbuf-daqingest"
|
|
version = "0.3.4-aa.0"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "daqingest"
|
|
path = "src/bin/daqingest.rs"
|
|
|
|
[features]
|
|
default = []
|
|
# default = ["bsread"]
|
|
bsread = []
|
|
DISABLED = []
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.28", features = ["derive", "cargo"] }
|
|
tracing = "0.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio-postgres = "0.7.13"
|
|
async-channel = "2.5.0"
|
|
futures-util = "0.3"
|
|
chrono = "0.4.38"
|
|
bytes = "1.10.0"
|
|
libc = "0.2"
|
|
autoerr = "0.0.5"
|
|
err = { path = "../daqbuf-err", package = "daqbuf-err" }
|
|
netpod = { path = "../daqbuf-netpod", package = "daqbuf-netpod" }
|
|
taskrun = { path = "../daqbuf-taskrun", package = "daqbuf-taskrun" }
|
|
series = { path = "../daqbuf-series", package = "daqbuf-series" }
|
|
channeltools = { path = "../daqbuf-channeltools", package = "daqbuf-channeltools" }
|
|
log = { path = "../daqbuf-log", package = "daqbuf-log" }
|
|
stats = { path = "../daqbuf-stats", package = "daqbuf-stats" }
|
|
scywr = { path = "../daqbuf-scywr", package = "daqbuf-scywr" }
|
|
dbpg = { path = "../daqbuf-dbpg", package = "daqbuf-dbpg" }
|
|
netfetch = { path = "../daqbuf-netfetch", package = "daqbuf-netfetch" }
|
|
serieswriter = { path = "../daqbuf-serieswriter", package = "daqbuf-serieswriter" }
|
|
# ingest-bsread = { path = "../daqbuf-ingest-bsread", package = "daqbuf-ingest-bsread" }
|
|
ingest-linux = { path = "../daqbuf-ingest-linux", package = "daqbuf-ingest-linux" }
|