-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 939 Bytes
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
[package]
name = "tlparse"
version = "0.4.9"
edition = "2021"
authors = ["Edward Z. Yang <[email protected]>"]
description = "Parse TORCH_LOG logs produced by PyTorch torch.compile"
license = "BSD-3-Clause"
[lib]
name = "tlparse"
[[bin]]
name = "tlparse"
path = "src/cli.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
syntect = "5.0"
base16ct = "0.2.0"
chrono = "0.4"
clap = { version = "4.5.2", features = ["derive"] }
fxhash = "0.2.1"
html-escape = "0.2.5"
indexmap = "2.1.0"
indicatif = "0.17.6"
md-5 = "0.10"
once_cell = "1.12"
opener = "0.6.1"
regex = "1.9.2"
serde = { version = "1.0.185", features = ["serde_derive"] }
serde_json = "1.0.100"
tinytemplate = "1.1.0"
tiny_http = "0.12"
flate2 = "1.0"
[dev-dependencies]
assert_cmd = "2.0"
libc = "0.2"
predicates = "3.1.0"
tempfile = "3.10.1"
[[bench]]
name = "parse_benchmark"
harness = false