lox/crates/lox-distributor/Cargo.toml

43 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "lox-distributor"
version = "0.1.0"
authors = ["The Tor Project, Inc.", "Lindsey Tulloch <onyinyang@torproject.org", "Cecylia Bocovich <cohosh@torproject.org>"]
edition = "2021"
rust-version = "1.65.0"
license = "MIT"
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
description = "Tool for receving Tor bridges from rdsys and distributing them to users"
2023-11-23 11:57:04 -05:00
keywords = ["tor", "lox", "bridges","anti-censorship", "distributor"]
categories = ["web-programming::http-server"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/lox-distributor"
readme = "README.md"
2023-06-05 13:24:42 -04:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-06-05 13:24:42 -04:00
[dependencies]
julianday = "1.2.0"
2024-01-08 11:12:09 -05:00
base64 = "0.21.6"
hyper = { version = "0.14.28", features = ["deprecated", "backports","server"] }
hex_fmt = "0.3"
2023-10-26 11:04:46 -04:00
futures = "0.3.29"
2023-12-19 05:06:55 -05:00
time = "0.3.31"
tokio = { version = "1", features = ["full", "macros", "signal"] }
rand = "0.8.5"
reqwest = { version = "0.11", features = ["json", "stream"]}
serde = { version = "1.0", features = ["derive", "rc"] }
2024-01-23 15:53:03 -05:00
serde_with = "3.5.1"
lox-zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp", version = "0.8.0" }
lox-library = { path = "../lox-library", version = "0.1.0"}
2023-06-05 18:26:59 -04:00
lox_utils = { path = "../lox-utils", version = "0.1.0"}
rdsys_backend = { path = "../rdsys-backend-api", version = "0.2"}
2024-01-08 12:18:37 -05:00
clap = { version = "4.4.14", features = ["derive"] }
serde_json = "1.0.108"
2023-10-30 12:54:59 -04:00
prometheus = "0.13.3"
sled = "0.34.7"
prometheus-client = "0.22.1"
thiserror = "1"
[dependencies.chrono]
2023-09-15 11:03:48 -04:00
version = "0.4.31"
features = ["serde"]