[package] name = "clone_into_derive" version = "0.1.1" authors = ["Takuya Hirata "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/tak9-n/clone_into_derive" description= "This crates generate clone macro for structs. It's quite convenient if you want that a struct copy to another struct which includes the struct fully." [lib] proc-macro = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] syn = "1.0" quote = "1.0" regex = "1.6" proc-macro2 = "1.0"