[package]
edition = "2024"
name = "globetrotter-java"
version = "0.0.12"
authors = ["roman <roman@luup-systems.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polyglot, type-safe internationalization"
homepage = "https://github.com/LuupSystems/globetrotter"
documentation = "https://docs.rs/globetrotter-java"
readme = "README.md"
keywords = [
"i8n",
"internationalization",
"translations",
"java",
]
categories = [
"command-line-utilities",
"internationalization",
"localization",
]
license = "MIT"
repository = "https://github.com/LuupSystems/globetrotter"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
serde = ["dep:serde"]
[lib]
name = "globetrotter_java"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[lints.clippy]
allow_attributes_without_reason = "deny"
assigning_clones = "allow"
await_holding_lock = "deny"
dbg_macro = "deny"
expect_used = "deny"
indexing_slicing = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "warn"
panic = "deny"
struct_excessive_bools = "allow"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
unused_must_use = "deny"
[lints.rust.warnings]
level = "warn"
priority = -1