35 lines
962 B
TOML
35 lines
962 B
TOML
[package]
|
|
name = "nodenet"
|
|
version = "0.0.2"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_cbor = "0.11.1"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
tokio = { version = "1.21.2", features = ["io-util", "net", "time", "sync"] }
|
|
#tokio-stream = {version = "0.1.5", features = ["fs"]}
|
|
async-channel = "1.6"
|
|
bytes = "1.0.1"
|
|
crc32fast = "1.2.1"
|
|
arrayref = "0.3.6"
|
|
byteorder = "1.4.3"
|
|
futures-util = "0.3.14"
|
|
tracing = "0.1.25"
|
|
hex = "0.4.3"
|
|
scylla = "0.7"
|
|
tokio-postgres = "0.7.7"
|
|
err = { path = "../err" }
|
|
netpod = { path = "../netpod" }
|
|
query = { path = "../query" }
|
|
disk = { path = "../disk" }
|
|
#parse = { path = "../parse" }
|
|
items_0 = { path = "../items_0" }
|
|
items_2 = { path = "../items_2" }
|
|
dbconn = { path = "../dbconn" }
|
|
scyllaconn = { path = "../scyllaconn" }
|
|
taskrun = { path = "../taskrun" }
|
|
streams = { path = "../streams" }
|