34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "nodenet"
|
|
version = "0.0.2"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
license = "GPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_cbor = "0.11.2"
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
async-channel = "1.9.0"
|
|
bytes = "1.10.0"
|
|
crc32fast = "1.4.2"
|
|
arrayref = "0.3.9"
|
|
byteorder = "1.5.0"
|
|
futures-util = "0.3.31"
|
|
tracing = "0.1.41"
|
|
hex = "0.4.3"
|
|
autoerr = "0.0"
|
|
daqbuf-err = { path = "../../../daqbuf-err" }
|
|
netpod = { path = "../../../daqbuf-netpod", package = "daqbuf-netpod" }
|
|
query = { path = "../../../daqbuf-query", package = "daqbuf-query" }
|
|
disk = { path = "../disk" }
|
|
items_0 = { path = "../../../daqbuf-items-0", package = "daqbuf-items-0" }
|
|
items_2 = { path = "../../../daqbuf-items-2", package = "daqbuf-items-2" }
|
|
dbconn = { path = "../dbconn" }
|
|
scyllaconn = { path = "../scyllaconn" }
|
|
taskrun = { path = "../taskrun" }
|
|
streams = { path = "../../../daqbuf-streams", package = "daqbuf-streams" }
|
|
streamio = { path = "../streamio" }
|
|
httpclient = { path = "../httpclient" }
|