-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
56 lines (53 loc) · 1.78 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
[package]
name = "s2protocol"
description = "A parser for Starcraft II - Replay format, exports to different target formats"
version = "3.1.2"
authors = ["Seb Ospina <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
repository = "https://github.com/sebosp/s2protocol-rs"
keywords = ["sc2replay", "polars", "arrow", "starcraft2", "mpq"]
categories = ["games", "parsing"]
[dependencies]
nom = "7.1.1"
thiserror = "1.0.40"
tracing = "0.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
clap = { version = "4.4", features = ["derive"] }
serde_json = "1.0.91"
serde = { version = "1.0.164", features = ["derive"] }
convert_case = "0.6.0"
nom-mpq = "2.0.3"
colored = "2.0.4"
arrow2 = { version = "0.17.0", features = [
"io_print",
"io_ipc",
], optional = true }
arrow2_convert = { version = "0.5.0", optional = true }
sha256 = { version = "1.4.0", optional = true, default-features = false }
rayon = { version = "1.7.0", optional = true }
chrono = { version = "0.4.31", features = ["serde"] }
libc = "0.2"
bat = { version = "0.24.0", optional = true }
[features]
default = ["tracing_debug_level", "arrow"]
# A feature that allows extra tracing, disabled by default because of performance
tracing_off = ["tracing/max_level_off", "tracing/release_max_level_off"]
tracing_trace_level = [
"tracing/max_level_trace",
"tracing/release_max_level_trace",
]
tracing_debug_level = [
"tracing/max_level_debug",
"tracing/release_max_level_debug",
]
tracing_info_level = [
"tracing/max_level_info",
"tracing/release_max_level_info",
]
arrow = ["arrow2", "arrow2_convert", "sha256", "rayon"]
syntax = ["bat"]
[dev-dependencies]
test-log = { version = "0.2", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }