diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-08 02:46:10 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-08 02:46:10 +0100 |
commit | 79c91a91bbeb40533d5e837fc094f96c3d086a08 (patch) | |
tree | ededea2bcc941f9fd94237a3964d8b7ef3b6bead /derive/Cargo.toml | |
parent | 7b96b333d786c17d6d3093ffa8886ae145bfa9a6 (diff) | |
download | mt_ser-79c91a91bbeb40533d5e837fc094f96c3d086a08.tar.xz |
derive serialization for structs
Diffstat (limited to 'derive/Cargo.toml')
-rw-r--r-- | derive/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 5597554..18b97c3 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" proc-macro = true [dependencies] -syn = { version = "1", features = ["full", "extra-traits", "printing"] } -quote = "1" -proc-macro2 = "1" darling = "0.14.2" +proc-macro2 = "1" +quote = "1" +syn = { version = "1", features = ["full", "extra-traits"] } |