-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (35 loc) · 988 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
41
[package]
name = "test_results_parser"
version = "0.5.4" # 0.5.4 release is a copy of 0.5.1 and diverges from main
edition = "2021"
[lib]
name = "test_results_parser"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.94"
base16ct = { version = "0.2.0", features = ["std"] }
indexmap = "2.6.0"
pyo3 = { version = "0.23.3", features = ["abi3-py310", "anyhow"] }
quick-xml = "0.37.1"
regex = "1.11.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
rinja = "0.3.5"
base64 = "0.22.1"
flate2 = "1.0.35"
smallvec = "2.0.0-alpha.7"
thiserror = "2.0.3"
watto = { git = "https://github.com/getsentry/watto", features = [
"writer",
"strings",
"offset_set",
] }
[dev-dependencies]
criterion = { version = "2.7.2", package = "codspeed-criterion-compat" }
rand = { version = "0.8.5", features = ["small_rng"] }
insta = { version = "1.42.0", features = ["glob", "yaml"] }
[profile.release]
debug = 1
[[bench]]
name = "binary"
harness = false