lox/crates/lox-utils/Cargo.toml

27 lines
707 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"
homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
description = "General helpers used by Lox"
keywords = ["tor", "lox"]
# We must put *something* here and this will do
categories = ["rust-patterns"]
repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git/"
[dependencies]
lox-library = {path = "../lox-library", version = "0.1.0"}
2023-06-05 15:24:06 -04:00
serde = "1"
serde_json = "1.0.107"
2023-09-07 11:34:42 -04:00
serde_with = "3.3.0"
2023-06-05 15:24:06 -04:00
[features]
full = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]