[package]
edition = "2024"
name = "nwnrs-encoding"
version = "0.0.7"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text encoding detection and conversion helpers for Neverwinter Nights data"
homepage = "https://github.com/urothis/nwnrs"
documentation = "https://docs.rs/nwnrs-encoding"
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/urothis/nwnrs"
[lib]
name = "nwnrs_encoding"
path = "src/lib.rs"
[dependencies.codepage]
version = "0.1.2"
default-features = false
[dependencies.encoding_rs]
version = "0.8.35"
features = ["alloc"]
default-features = false
[dependencies.tracing]
version = "0.1.44"
features = [
"attributes",
"std",
]
default-features = false
[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
cast_lossless = "warn"
cast_possible_truncation = "warn"
dbg_macro = "deny"
expect_used = "deny"
indexing_slicing = "warn"
let_and_return = "warn"
manual_ok_or = "warn"
map_err_ignore = "warn"
match_like_matches_macro = "warn"
mem_forget = "warn"
needless_borrow = "warn"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
result_large_err = "warn"
semicolon_if_nothing_returned = "warn"
todo = "deny"
too_many_arguments = "allow"
unimplemented = "deny"
unused_async = "warn"
unused_unit = "warn"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"