[package]
edition = "2024"
rust-version = "1.88.0"
name = "localize_it"
version = "2.1.0"
authors = ["Ivan Sarnitskii <ivan.sarnitskiy@mail.ru>"]
build = false
exclude = [
".github",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple and fast library for localization"
homepage = "https://github.com/ZenKerr/localize_it"
documentation = "https://docs.rs/localize_it"
readme = "README.md"
keywords = [
"localization",
"l10n",
"internationalization",
"i18n",
"translation",
]
categories = [
"localization",
"internationalization",
"no-std",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZenKerr/localize_it"
[lib]
name = "localize_it"
path = "src/lib.rs"
doctest = false
proc-macro = true
[[test]]
name = "enum_locale"
path = "tests/enum_locale.rs"
[[test]]
name = "macro_localize"
path = "tests/macro_localize.rs"
[[test]]
name = "mod_storage"
path = "tests/mod_storage.rs"
[[bench]]
name = "lib"
path = "benches/lib.rs"
harness = false
[dependencies.proc-macro2]
version = "1.0.106"
features = ["span-locations"]
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "2.0.117"
features = ["full"]
[dev-dependencies.criterion]
version = "0.8.2"
default-features = false