26 lines
950 B
TOML
26 lines
950 B
TOML
[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"
|
|
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox-project/~/wikis/home"
|
|
description = "Tool for receving resources from rdsys and distributing them to users"
|
|
keywords = ["tor", "lox", "bridges"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = "0.13.1"
|
|
hyper = { version = "0.14.24", features = ["server"] }
|
|
hex_fmt = "0.3"
|
|
futures = "0.3.26"
|
|
tokio = { version = "1", features = ["full", "macros", "signal"] }
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = "3.0.0"
|
|
serde_json = "1.0.87"
|
|
|
|
lox = { path = "../lox-library", version = "0.1.0"}
|
|
rdsys_backend = { path = "../rdsys-backend-api", version = "0.1.0"}
|