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 = "2021" 14rust-version = "1.70.0" 15name = "num_enum_derive" 16version = "0.7.3" 17authors = [ 18 "Daniel Wagner-Hall <[email protected]>", 19 "Daniel Henry-Mantilla <[email protected]>", 20 "Vincent Esche <[email protected]>", 21] 22description = "Internal implementation details for ::num_enum (Procedural macros to make inter-operation between primitives and enums easier)" 23readme = "README.md" 24keywords = [] 25categories = [] 26license = "BSD-3-Clause OR MIT OR Apache-2.0" 27repository = "https://github.com/illicitonion/num_enum" 28 29[package.metadata.docs.rs] 30features = ["external_doc"] 31 32[lib] 33proc-macro = true 34 35[dependencies.proc-macro-crate] 36version = ">= 1, <= 3" 37optional = true 38 39[dependencies.proc-macro2] 40version = "1.0.60" 41 42[dependencies.quote] 43version = "1" 44 45[dependencies.syn] 46version = "2" 47features = ["parsing"] 48 49[dev-dependencies.syn] 50version = "2" 51features = [ 52 "extra-traits", 53 "parsing", 54] 55 56[features] 57complex-expressions = ["syn/full"] 58default = ["std"] 59external_doc = [] 60std = ["proc-macro-crate"] 61