[package]
edition = "2021"
name = "fluent-static-macros"
version = "0.1.2"
authors = ["Sergey Zaytsev <sergey@zzlabs.xyz>"]
build = false
include = [
"/src",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatically generate Rust functions from Fluent message files for streamlined localization in Rust applications."
homepage = "https://github.com/zaytsev/fluent-static"
readme = "README.md"
keywords = [
"localization",
"l10n",
"i18n",
"internationalization",
"fluent",
]
categories = [
"localization",
"internationalization",
]
license = "MIT"
repository = "https://github.com/zaytsev/fluent-static"
[lib]
name = "fluent_static_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.fluent-static-codegen]
version = "0.6.2"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.trybuild]
version = "1"