22 lines
559 B
TOML
22 lines
559 B
TOML
[package]
|
|
name = "rdsys_backend"
|
|
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde_json = "1"
|
|
futures-util = { version = "0.3"}
|
|
serde = { version = "1", features = ["derive"]}
|
|
bytes = "1"
|
|
hex = "0.4.3"
|
|
crc64 = "2.0.0"
|
|
sha1 = "0.10.5"
|
|
tokio = { version = "1", features = ["macros"]}
|
|
reqwest = { version = "0.11", features = ["stream"]}
|
|
tokio-stream = "0.1.12"
|
|
futures = "0.3.27"
|
|
tokio-util = "0.7.7"
|