constant macro arrays
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..13da985
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "car"
+version = "0.1.0"
+authors = ["bend-n <[email protected]>"]
+description = "std::array::{map, from_fn} in const"
+edition = "2021"
+repository = "https://github.com/bend-n/car"
+license = "MIT"
+
+[dependencies]
+proc-macro2 = "1.0.79"
+quote = "1.0.35"
+syn = { version = "2.0.55", features = ["full"] }
+
+[lib]
+proc_macro = true