2023-06-05 14:56:41 -04:00
|
|
|
[package]
|
|
|
|
name = "rdsys_backend"
|
2023-11-06 12:22:30 -05:00
|
|
|
authors = ["Cecylia Bocovich <cohosh@torproject.org>, Lindsey Tulloch <onyinyang@torproject.org"]
|
2023-06-29 10:08:49 -04:00
|
|
|
version = "0.2.0"
|
2023-06-05 14:56:41 -04:00
|
|
|
edition = "2021"
|
2023-11-06 12:22:30 -05:00
|
|
|
license = "MIT"
|
2023-11-23 11:44:05 -05:00
|
|
|
description = "A backend API to receive resources from rdsys"
|
2023-11-06 12:22:30 -05:00
|
|
|
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
|
2023-11-23 11:57:04 -05:00
|
|
|
keywords = ["tor", "lox", "bridges","anti-censorship", "API"]
|
2023-11-06 12:22:30 -05:00
|
|
|
categories = ["api-bindings", "encoding"]
|
|
|
|
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/rdsys-backend-api"
|
2023-11-22 14:41:22 -05:00
|
|
|
readme = "README.md"
|
2023-06-05 14:56:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1"
|
|
|
|
futures-util = { version = "0.3"}
|
|
|
|
serde = { version = "1", features = ["derive"]}
|
|
|
|
bytes = "1"
|
|
|
|
hex = "0.4.3"
|
|
|
|
crc64 = "2.0.0"
|
2023-09-26 17:04:15 -04:00
|
|
|
sha1 = "0.10.6"
|
2023-08-23 17:26:03 -04:00
|
|
|
tokio = { version = "1", features = ["full", "macros"] }
|
|
|
|
reqwest = { version = "0.11", features = ["json", "stream"]}
|
2023-09-07 11:34:17 -04:00
|
|
|
tokio-stream = "0.1.14"
|
2023-10-26 11:04:46 -04:00
|
|
|
futures = "0.3.29"
|
2023-10-26 13:06:06 -04:00
|
|
|
tokio-util = "0.7.10"
|
2023-09-15 11:03:48 -04:00
|
|
|
chrono = { version = "0.4.31", features = ["serde", "clock"] }
|