[package]
edition = "2024"
name = "uxie"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data fetching library for Pokemon Gen 4 romhacking - map headers, C parsing, and more"
homepage = "https://github.com/KalaayPT/uxie"
documentation = "https://docs.rs/uxie"
readme = "README.md"
keywords = [
"pokemon",
"romhacking",
"ds",
"platinum",
"heartgold",
]
categories = [
"parser-implementations",
"game-development",
]
license = "MIT"
repository = "https://github.com/kalaay/uxie"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "uxie"
path = "src/lib.rs"
[[bin]]
name = "uxie"
path = "src/main.rs"
[[test]]
name = "test_script_id_resolution"
path = "tests/test_script_id_resolution.rs"
[dependencies.binrw]
version = "0.14"
[dependencies.bitflags]
version = "2.6"
features = ["serde"]
[dependencies.byteorder]
version = "1.5"
[dependencies.chatot]
version = "0.5.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.deunicode]
version = "1.6"
[dependencies.modular-bitfield]
version = "0.11"
[dependencies.rayon]
version = "1.10.0"
[dependencies.regex]
version = "1.11"
[dependencies.rustc-hash]
version = "2.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.14"
[lints.clippy]
case_sensitive_file_extension_comparisons = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
cloned_instead_of_copied = "allow"
collapsible_if = "allow"
doc_markdown = "allow"
field_reassign_with_default = "allow"
if_not_else = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
match_bool = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
similar_names = "allow"
trivially_copy_pass_by_ref = "allow"
uninlined_format_args = "allow"
unnecessary_cast = "allow"
unusual_byte_groupings = "allow"
use_self = "allow"
wildcard_imports = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1