mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 14:34:34 +03:00
97d0a976fd
Summary: This means crates like env_logger (which reads $RUST_LOG, and writes to stderr) can be used for convenient debugging. Reviewed By: xavierd Differential Revision: D20286514 fbshipit-source-id: e3b80cc4830ba5cc6dbf7aa1cbb92a4f4f046a54
17 lines
369 B
TOML
17 lines
369 B
TOML
[package]
|
|
name = "tracing-collector"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
indexmap = { version = "1", features = ["serde-1"] }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
parking_lot = "0.9"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = {version = "0.3.7", features = ["processthreadsapi"]}
|