# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "derive-ctor" version = "1.0.6" authors = ["Evan Cowin"] exclude = [ ".github/*", ".gitignore", ] description = "Adds `#[derive(ctor)]` which allows for the auto-generation of struct, enum, and union constructors." readme = "README.md" keywords = [ "derive", "macro", "trait", "procedural", "no_std", ] categories = [ "no-std", "rust-patterns", ] license = "MIT" repository = "https://github.com/ImaMapleTree/derive-ctor" [lib] proc-macro = true [dependencies.heck] version = "0.5.*" optional = true [dependencies.proc-macro2] version = "1.0.*" [dependencies.quote] version = "1.*" [dependencies.syn] version = "2.0.*" [features] default = [ "structs", "enums", "unions", ] enums = ["dep:heck"] shorthand = [] structs = [] unions = []