32 lines
902 B
TOML
32 lines
902 B
TOML
[package]
|
|
name = "disk"
|
|
version = "0.0.1-a.0"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
http = "0.2"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
tokio = { version = "1.5.0", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "fs"] }
|
|
hyper = { version = "0.14", features = ["http1", "http2", "client", "server", "tcp", "stream"] }
|
|
async-channel = "1.6"
|
|
bytes = "1.0.1"
|
|
byteorder = "1.4.3"
|
|
futures-core = "0.3.14"
|
|
futures-util = "0.3.14"
|
|
async-stream = "0.3.0"
|
|
tracing = "0.1.25"
|
|
fs2 = "0.4.3"
|
|
libc = "0.2.93"
|
|
hex = "0.4.3"
|
|
nom = "6.1.2"
|
|
num-traits = "0.2"
|
|
num-derive = "0.3"
|
|
tiny-keccak = { version = "2.0", features = ["sha3"] }
|
|
err = { path = "../err" }
|
|
taskrun = { path = "../taskrun" }
|
|
netpod = { path = "../netpod" }
|
|
bitshuffle = { path = "../bitshuffle" }
|