tor/src/rust/tor_log/Cargo.toml
Chelsea Holland Komlo 3dfe8e6522 add minimal rust module for logging to tor's logger
Allows an optional no-op for testing purposes
2017-12-21 15:29:33 -05:00

18 lines
261 B
TOML

[package]
name = "tor_log"
version = "0.1.0"
authors = ["The Tor Project"]
[lib]
name = "tor_log"
path = "lib.rs"
crate_type = ["rlib", "staticlib"]
[features]
testing = []
[dependencies]
libc = "0.2.22"
[dependencies.tor_allocate]
path = "../tor_allocate"