-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
4,456 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "s2protocol" | ||
description = "A parser for Starcraft II - Replay format, exports to different target formats" | ||
version = "3.0.4" | ||
version = "3.1.0" | ||
authors = ["Seb Ospina <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
@@ -26,15 +26,18 @@ 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_info_level", "arrow"] | ||
# A feature that allows extra tracing, disable by default because of performance | ||
default = ["tracing_off", "arrow", "syntax"] | ||
# 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"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.