28 lines
735 B
TOML
28 lines
735 B
TOML
[package]
|
|
name = "dbconn"
|
|
version = "0.0.2"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/dbconn.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio-postgres = { version = "0.7.12", features = ["with-chrono-0_4", "with-serde_json-1"] }
|
|
crc32fast = "1.3.2"
|
|
byteorder = "1.4"
|
|
futures-util = "0.3.30"
|
|
bytes = "1.6.0"
|
|
pin-project = "1"
|
|
#dashmap = "3"
|
|
async-channel = "1.9.0"
|
|
chrono = "0.4.38"
|
|
regex = "1.10.4"
|
|
autoerr = "0.0.3"
|
|
daqbuf-err = { path = "../../../daqbuf-err" }
|
|
netpod = { path = "../../../daqbuf-netpod", package = "daqbuf-netpod" }
|
|
parse = { path = "../../../daqbuf-parse", package = "daqbuf-parse" }
|
|
taskrun = { path = "../taskrun" }
|