[package]
edition = "2024"
rust-version = "1.96"
name = "gatekeep-fluent"
version = "1.0.1"
authors = ["Mari"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fluent reason catalog adapter for gatekeep"
homepage = "https://codeberg.org/plethu/gatekeep"
documentation = "https://docs.rs/gatekeep-fluent"
readme = "README.md"
keywords = [
"authorization",
"policy",
"authz",
"fluent",
]
categories = [
"authentication",
"internationalization",
"localization",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/plethu/gatekeep"
[lib]
name = "gatekeep_fluent"
path = "src/lib.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[dependencies.fluent-bundle]
version = "0.16.0"
[dependencies.gatekeep]
version = "1.0.0"
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.unic-langid]
version = "0.9.6"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "deny"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"