blob: 3e30184c9d04250522ff049d3a34df16eff127d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "static-l10n"
version = "0.0.1"
edition = "2024"
authors = ["copi143 <copi143@outlook.com>"]
license = "CC0-1.0"
description = "Static localization for Rust using procedural macros."
homepage = "https://github.com/copi143/rust-static-l10n"
repository = "https://github.com/copi143/rust-static-l10n"
readme = "README.md"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.105"
quote = "1.0.43"
syn = { version = "2.0.114", features = ["full"] }
toml = "0.9.11"
|