-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (55 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "cbl-lumberjack"
description = "CBL log parser"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[features]
default = ["xlsx"]
xlsx = ["dep:rust_xlsxwriter"]
[dependencies]
lumberjack_parse = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
clap = { workspace = true, features = ["derive"] }
env_logger = { workspace = true }
log = { workspace = true }
rust_xlsxwriter = { workspace = true, optional = true, features = [
"chrono",
"serde",
] }
rusqlite.workspace = true
serde = { workspace = true }
thiserror = { workspace = true }
[workspace]
members = ["parse"]
[workspace.package]
version = "0.3.0"
authors = ["Callum Birks <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/couchbaselabs/cbl-lumberjack"
[workspace.dependencies]
lumberjack_cli = { version = "0.3.0", path = "." }
lumberjack_parse = { version = "0.3.0", path = "parse" }
chrono = "0.4"
clap = "4.5.4"
env_logger = "0.11"
enum-iterator = "2.1"
futures = "0.3"
grep = "0.3"
lazy_static = "1.4"
log = "0.4"
rangemap = "1.5"
rayon = "1.10.0"
regex = "1.10"
rust_xlsxwriter = "0.69.0"
rusqlite = { version = "^0.32", features = ["bundled", "chrono"] }
semver = "1.0"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
thiserror = "1.0"
[workspace.lints.clippy]
pedantic = "warn"