jomini 0.31.2

Low level, performance oriented parser for save and game files from EU4, CK3, HOI4, Vic3, Imperator, and other PDS titles
Documentation
[[bench]]
harness = false
name = "jomini_bench"
path = "benches/jomini_bench.rs"

[[bin]]
name = "envelope"
path = "src/bin/envelope.rs"
required-features = ["envelope"]

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

[[bin]]
name = "json"
path = "src/bin/json.rs"
required-features = ["json"]

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

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

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

[dependencies.flate2]
default-features = false
features = ["zlib-rs"]
optional = true
version = "1.1.5"

[dependencies.itoa]
optional = true
version = "1.0"

[dependencies.jomini_derive]
optional = true
version = "^0.4.0"

[dependencies.rawzip]
optional = true
version = "0.4.2"

[dependencies.serde]
optional = true
version = "1.0.195"

[dependencies.serde_json]
optional = true
version = "1.0.114"

[dev-dependencies.attohttpc]
features = ["tls-vendored"]
version = "0.29"

[dev-dependencies.criterion]
version = "0.6.0"

[dev-dependencies.encoding_rs]
version = "0.8"

[dev-dependencies.flate2]
default-features = false
features = ["zlib-rs"]
version = "1.1.2"

[dev-dependencies.quickcheck]
version = "1"

[dev-dependencies.quickcheck_macros]
version = "1"

[dev-dependencies.rawzip]
version = "0.4.0"

[dev-dependencies.rstest]
version = "0.19.0"

[dev-dependencies.serde_with]
version = "3.8.1"

[features]
default = ["derive", "faster_writer"]
derive = ["serde/derive", "jomini_derive"]
envelope = ["dep:rawzip", "dep:flate2"]
faster_writer = ["dep:itoa"]
json = ["serde", "serde_json"]
serde = ["dep:serde"]

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

[package]
authors = ["Nick Babcock <nbabcock19@hotmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing"]
description = "Low level, performance oriented parser for save and game files from EU4, CK3, HOI4, Vic3, Imperator, and other PDS titles"
edition = "2024"
exclude = ["/.github", "/assets"]
keywords = ["eu4", "ck3", "ironman", "clausewitz"]
license = "MIT"
name = "jomini"
readme = "README.md"
repository = "https://github.com/rakaly/jomini"
version = "0.31.2"

[package.metadata.docs.rs]
all-features = true

[profile.bench]
debug = 2

[profile.release]
debug = 2

[[test]]
name = "de"
path = "tests/de.rs"

[[test]]
name = "envelope"
path = "tests/envelope.rs"

[[test]]
name = "tape"
path = "tests/tape.rs"