-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 981 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 = "mlperf-log-parser"
version = "0.1.0"
edition = "2021"
description = "A tool for parsing MLPerf log files"
authors = ["[email protected]"]
license = "MIT"
repository = "https://github.com/furiosa-ai/mlperf-log-parser"
readme = "README.md"
keywords = ["mlperf", "log", "parser", "machine-learning", "benchmarking"]
categories = ["command-line-utilities", "development-tools", "parsing"]
[dependencies]
env_logger = "0.11.5"
lalrpop-util = { version = "0.22.0", features = ["lexer", "unicode"] }
log = "0.4.22"
logos = "0.14.3"
logos-codegen = "0.14.3"
logos-derive = "0.14.3"
serde = { version = "1.0", features = ["derive"] }
serde-value = "0.7.0"
serde_json = "1.0"
serde_yaml = "0.9"
structopt = "0.3"
[lib]
name = "mlperf_log_parser"
path = "src/lib.rs"
[[bin]]
name = "mlperf-log-parser"
path = "src/main.rs"
[build-dependencies]
lalrpop = { version = "0.22.0", features = ["lexer", "unicode"] }
[dev-dependencies]
env_logger = "0.11.5"
test-log = "0.2.16"