27 lines
707 B
TOML
27 lines
707 B
TOML
[package]
|
|
name = "lox_utils"
|
|
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"}
|
|
serde = "1"
|
|
serde_json = "1.0.105"
|
|
serde_with = "3.3.0"
|
|
|
|
|
|
[features]
|
|
full = []
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|