From c38d117b5803c65ad57a4c4704ee0d897d9fb3cb Mon Sep 17 00:00:00 2001 From: copi143 Date: Sat, 17 Jan 2026 04:02:47 +0800 Subject: init --- derive/Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 derive/Cargo.toml (limited to 'derive/Cargo.toml') diff --git a/derive/Cargo.toml b/derive/Cargo.toml new file mode 100644 index 0000000..3e30184 --- /dev/null +++ b/derive/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "static-l10n" +version = "0.0.1" +edition = "2024" +authors = ["copi143 "] +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" -- cgit