33 lines
914 B
TOML
33 lines
914 B
TOML
[package]
|
|
name = "streams"
|
|
version = "0.0.2"
|
|
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.34", features = ["io-util", "net", "time", "sync", "fs"] }
|
|
futures-util = "0.3.15"
|
|
pin-project = "1.0.12"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_cbor = "0.11.1"
|
|
typetag = "0.2.14"
|
|
ciborium = "0.2.1"
|
|
bytes = "1.3"
|
|
arrayref = "0.3.6"
|
|
crc32fast = "1.3.2"
|
|
byteorder = "1.4.3"
|
|
async-channel = "1.8.0"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
wasmer = { version = "4.1.0", default-features = false, features = ["sys", "cranelift"] }
|
|
err = { path = "../err" }
|
|
netpod = { path = "../netpod" }
|
|
query = { path = "../query" }
|
|
items_0 = { path = "../items_0" }
|
|
items_2 = { path = "../items_2" }
|
|
parse = { path = "../parse" }
|
|
httpclient = { path = "../httpclient" }
|
|
|
|
[dev-dependencies]
|
|
taskrun = { path = "../taskrun" }
|