35 lines
902 B
TOML
35 lines
902 B
TOML
[package]
|
|
name = "nodenet"
|
|
version = "0.0.1-a.1"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
path = "src/nodenet.rs"
|
|
|
|
[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.7.1", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
|
|
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-core = "0.3.14"
|
|
futures-util = "0.3.14"
|
|
tracing = "0.1.25"
|
|
hex = "0.4.3"
|
|
scylla = "0.5"
|
|
tokio-postgres = "0.7.7"
|
|
err = { path = "../err" }
|
|
netpod = { path = "../netpod" }
|
|
disk = { path = "../disk" }
|
|
#parse = { path = "../parse" }
|
|
items = { path = "../items" }
|
|
dbconn = { path = "../dbconn" }
|
|
taskrun = { path = "../taskrun" }
|