lox/crates/lox-utils/Cargo.toml

28 lines
751 B
TOML
Raw Normal View History

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-01-17 12:53:19 -05:00
chrono = { version = "0.4.31", features = ["serde", "clock"] }
lox-library = {path = "../lox-library", version = "0.1.0"}
2023-06-05 15:24:06 -04:00
serde = "1"
serde_json = "1.0.108"
2024-01-22 10:30:55 -05:00
serde_with = "3.5.0"
2023-06-05 15:24:06 -04:00
[features]
full = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]