[package] name = "s2protocol" description = "A parser for Starcraft II - Replay format, exports to different target formats" version = "3.1.1" authors = ["Seb Ospina "] 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.2" 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_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"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }