[package]
edition = "2021"
rust-version = "1.80"
name = "ferrocat"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-first gettext and ICU toolkit for PO parsing, compilation, and runtime formatting."
homepage = "https://github.com/sebastian-software/ferrocat"
documentation = "https://docs.rs/ferrocat"
readme = "README.md"
keywords = [
"ferrocat",
"gettext",
"po",
"icu",
"i18n",
]
categories = [
"internationalization",
"localization",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/sebastian-software/ferrocat"
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
[lib]
name = "ferrocat"
path = "src/lib.rs"
[[example]]
name = "catalog_runtime"
path = "examples/catalog_runtime.rs"
[[example]]
name = "po_roundtrip"
path = "examples/po_roundtrip.rs"
[[test]]
name = "catalog"
path = "tests/catalog.rs"
[[test]]
name = "po"
path = "tests/po.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "references"
path = "tests/references.rs"
[[test]]
name = "runtime_api"
path = "tests/runtime_api.rs"