[package]
edition = "2021"
rust-version = "1.93.0"
name = "manasight-parser"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MTG Arena log file parser — reads Player.log and emits typed game events"
readme = "README.md"
keywords = [
"mtg-arena",
"parser",
"log",
"magic-the-gathering",
]
categories = [
"parser-implementations",
"games",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/manasight/manasight-parser"
[lib]
name = "manasight_parser"
path = "src/lib.rs"
[[bin]]
name = "scrub"
path = "src/bin/scrub.rs"
[[test]]
name = "smoke_parsers"
path = "tests/smoke_parsers.rs"
[[test]]
name = "smoke_ratchet"
path = "tests/smoke_ratchet.rs"
[[test]]
name = "smoke_router"
path = "tests/smoke_router.rs"
[[test]]
name = "smoke_stream"
path = "tests/smoke_stream.rs"
[[test]]
name = "stream_integration"
path = "tests/stream_integration.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.flate2]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"sync",
"fs",
"io-util",
"time",
"macros",
]
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "windows")'.dependencies.known-folders]
version = "1"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1