summaryrefslogtreecommitdiff
path: root/matrix-macros/Cargo.toml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-02-23 11:32:47 -0500
committerFreya Murphy <freya@freyacat.org>2024-02-23 11:32:47 -0500
commita888c09bd54de77fb2004754a0e14ce14a906232 (patch)
treec5b20b4be32feec7a3430f1191e1f735ea51ca57 /matrix-macros/Cargo.toml
parentindexing and field access (diff)
downloadmatrix-a888c09bd54de77fb2004754a0e14ce14a906232.tar.gz
matrix-a888c09bd54de77fb2004754a0e14ce14a906232.tar.bz2
matrix-a888c09bd54de77fb2004754a0e14ce14a906232.zip
more changes
Diffstat (limited to 'matrix-macros/Cargo.toml')
-rw-r--r--matrix-macros/Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/matrix-macros/Cargo.toml b/matrix-macros/Cargo.toml
new file mode 100644
index 0000000..df84237
--- /dev/null
+++ b/matrix-macros/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "matrix-macros"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+proc-macro = true
+
+[dependencies]
+syn = { version = "1", features = ["full"] }
+quote = "1"
+matrix = { path = "../matrix" }