-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 930 Bytes
/
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
[package]
name = "breadlog"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "breadlog"
path = "src/main.rs"
[dependencies]
pest = {version = "2.6.0" }
pest_derive = "2.6.0"
serde_yaml = "0.9"
serde = { version = "1.0.140", features = ["derive"] }
clap = { version = "4.4.6", features = ["derive"] }
log = "0.4.17"
simple_logger = "4.3.0"
tempfile = "3.3.0"
futures = "0.3"
async-std = { version = "1.12.0", features = ["attributes"] }
regex = "1.10.0"
lazy_static = "1.4.0"
test-log = "0.2.11"
walkdir = "2"
signal-hook = "0.3.15"
testing_logger = "0.1.1"
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
async-trait = "0.1.71"
tracing = "0.1"
value-bag = "1.4.1"
[dev-dependencies]
env_logger = "0.10.1"
tracing-test = "0.2"
test_bin = "0.4"
copy_dir = "0.1"
regex = "1.10.0"
tempdir = "0.3.7"