-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 1.21 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "xclog"
version = "0.3.2"
edition = "2021"
description = "xcodebuild build-log formater and parser"
license = "MIT OR Apache-2.0"
[dependencies]
# Utilities
shell-words = "1.1.0"
tap = "1.0.1"
regex = "1.5"
lazy_static = "1.4.0"
derive-deref-rs = "0.1.1"
# Async Runtime
tokio = { version = "1.18.0", features = ["rt-multi-thread", "macros", "process", "fs"] }
tokio-stream = { version = "0.1.8", features = ["io-util"] }
parity-tokio-ipc = "0.9.0"
async-trait = "0.1.52"
# Tracing
tracing = { version = "0.1.32", optional = true }
tracing-appender = { version = "0.2.1", optional = true }
tracing-subscriber = { version = "0.3.9", features = ["env-filter"], optional = true}
anyhow = "1.0.57"
async-stream = "0.3.3"
process-stream = "0.4.0"
paste = "1.0.7"
derive_is_enum_variant = "0.1.1"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
lazy-regex = { version = "2.3.0", features = ["std"] }
wax = "0.5.0"
[dev-dependencies]
tracing-test = "0.2.1"
[features]
default = [ "with_tracing" ]
with_tracing = [ "tracing", "tracing-appender", "tracing-subscriber" ]