Factored into separate crate

This commit is contained in:
Dominik Werder
2024-11-12 13:36:30 +01:00
commit e22a8383b1
5 changed files with 1651 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
/Cargo.lock
/target
+53
View File
@@ -0,0 +1,53 @@
[package]
name = "daqbuf-ca-proto"
version = "0.0.4"
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1.37"
async-channel = "2.3.1"
bytes = "1.8"
#arrayref = "0.3"
byteorder = "1.5"
futures-util = { version = "0.3.31", features = ["io"] }
#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"
thiserror = "=0.0.1"
#log = { path = "../log" }
series = { path = "../daqbuf-series", package = "daqbuf-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 = "../../daqbuf-err", package = "daqbuf-err" }
netpod = { path = "../daqbuf-netpod", package = "daqbuf-netpod" }
#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" }
#taskrun = { path = "../../daqbuffer/crates/taskrun" }
#bitshuffle = { path = "../../daqbuffer/crates/bitshuffle" }
#mrucache = { path = "../mrucache" }
#batchtools = { path = "../batchtools" }
[patch.crates-io]
thiserror = { git = "https://github.com/dominikwerder/thiserror.git", branch = "cstm" }
+1
View File
@@ -0,0 +1 @@
pub mod proto;
+1594
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -0,0 +1 @@
pub mod ca;