manasight-parser 0.3.0

MTG Arena log file parser — reads Player.log and emits typed game events
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.93.0"
name = "manasight-parser"
version = "0.3.0"
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"

[features]
brace_depth_flush = []
default = ["brace_depth_flush"]

[lib]
name = "manasight_parser"
path = "src/lib.rs"

[[bin]]
name = "scrub"
path = "src/bin/scrub.rs"

[[test]]
name = "corpus_flush_timing"
path = "tests/corpus_flush_timing.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.proptest]
version = "1"

[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