diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-06 19:56:53 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-06 19:56:53 +0100 |
commit | be0db6761c344a53a13f569a934b33d01eb54147 (patch) | |
tree | 2668dbbab1b2ff9ebc12866d8af48e0bc8b771e5 /derive/Cargo.toml | |
download | mt_ser-be0db6761c344a53a13f569a934b33d01eb54147.tar.xz |
Initial commit
Diffstat (limited to 'derive/Cargo.toml')
-rw-r--r-- | derive/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/derive/Cargo.toml b/derive/Cargo.toml new file mode 100644 index 0000000..5597554 --- /dev/null +++ b/derive/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "mt_data_derive" +version = "0.1.0" +edition = "2021" + +[lib] +proc-macro = true + +[dependencies] +syn = { version = "1", features = ["full", "extra-traits", "printing"] } +quote = "1" +proc-macro2 = "1" +darling = "0.14.2" |