1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "synstructure" 15version = "0.13.1" 16authors = ["Nika Layzell <nika@thelayzells.com>"] 17include = [ 18 "src/**/*", 19 "Cargo.toml", 20 "README.md", 21 "LICENSE", 22] 23description = "Helper methods and macros for custom derives" 24documentation = "https://docs.rs/synstructure" 25readme = "README.md" 26keywords = [ 27 "syn", 28 "macros", 29 "derive", 30 "expand_substructure", 31 "enum", 32] 33license = "MIT" 34repository = "https://github.com/mystor/synstructure" 35 36[dependencies.proc-macro2] 37version = "1.0.60" 38default-features = false 39 40[dependencies.quote] 41version = "1" 42default-features = false 43 44[dependencies.syn] 45version = "2" 46features = [ 47 "derive", 48 "parsing", 49 "printing", 50 "clone-impls", 51 "visit", 52 "extra-traits", 53] 54default-features = false 55 56[dev-dependencies.synstructure_test_traits] 57version = "0.1" 58 59[features] 60default = ["proc-macro"] 61proc-macro = [ 62 "proc-macro2/proc-macro", 63 "syn/proc-macro", 64 "quote/proc-macro", 65] 66