2023-06-05 15:24:06 -04:00
|
|
|
[package]
|
2023-06-05 18:26:59 -04:00
|
|
|
name = "lox_utils"
|
2023-06-05 15:24:06 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Tor Project, Inc.", "Lindsey Tulloch <onyinyang@torproject.org"]
|
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.65"
|
2023-11-23 12:24:20 -05:00
|
|
|
license = "MIT"
|
2023-06-05 15:24:06 -04:00
|
|
|
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
|
|
|
|
description = "General helpers used by Lox"
|
2023-11-23 11:57:04 -05:00
|
|
|
keywords = ["tor", "lox", "utilities"]
|
2023-06-05 15:24:06 -04:00
|
|
|
categories = ["rust-patterns"]
|
|
|
|
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git/"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-12 10:10:33 -05:00
|
|
|
chrono = { version = "0.4.34", features = ["serde", "clock"] }
|
2023-06-23 08:19:19 -04:00
|
|
|
lox-library = {path = "../lox-library", version = "0.1.0"}
|
2023-06-05 15:24:06 -04:00
|
|
|
serde = "1"
|
2024-02-12 10:11:06 -05:00
|
|
|
serde_json = "1.0.113"
|
2024-03-11 18:09:04 -04:00
|
|
|
serde_with = "3.7.0"
|
2023-06-05 15:24:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
full = []
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2023-06-06 20:27:49 -04:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|