21 lines
605 B
TOML
21 lines
605 B
TOML
[package]
|
|
name = "lox-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = "0.13"
|
|
hyper = { version = "0.14.24", features = ["server"] }
|
|
hex_fmt = "0.3"
|
|
tokio = { version = "1", features = ["full", "macros", "signal"] }
|
|
rand = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = "1.9.1"
|
|
serde_json = "1.0.87"
|
|
time = "0.2"
|
|
|
|
lox = { git = "https://gitlab.torproject.org/onyinyang/lox.git"}
|
|
rdsys_backend = { git = "https://gitlab.torproject.org/cohosh/rdsys-backend-api.git"}
|