diff options
author | Freya Murphy <freya@freyacat.org> | 2024-02-23 11:32:47 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-02-23 11:32:47 -0500 |
commit | a888c09bd54de77fb2004754a0e14ce14a906232 (patch) | |
tree | c5b20b4be32feec7a3430f1191e1f735ea51ca57 /matrix-macros/Cargo.toml | |
parent | indexing and field access (diff) | |
download | matrix-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.toml | 12 |
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" } |