desugars operator overloading
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..e5cd65f
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "lower"
+version = "0.1.0"
+authors = ["bend-n <[email protected]>"]
+description = "desugar math where the compiler wont"
+edition = "2021"
+repository = "https://github.com/bend-n/lower.git"
+license = "MIT"
+
+[dependencies]
+proc-macro2 = "1.0.78"
+quote = "1.0.32"
+syn = "2.0.15"
+
+[lib]
+proc_macro = true