• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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"
14name = "open-enum-derive"
15version = "0.5.2"
16include = [
17    "/src",
18    "LICENSE",
19    "Cargo.toml",
20]
21description = "An attribute for generating \"open\" C-like enums, those that accept any integer value, by using a newtype struct and associated constants"
22readme = "README.md"
23keywords = [
24    "enum",
25    "open",
26    "integer",
27    "newtype",
28]
29categories = [
30    "no-std",
31    "rust-patterns",
32]
33license = "Apache-2.0"
34repository = "https://github.com/kupiakos/open-enum/tree/main/derive"
35
36[lib]
37proc-macro = true
38
39[dependencies.proc-macro2]
40version = "1.0.43"
41
42[dependencies.quote]
43version = "1"
44
45[dependencies.syn]
46version = "2"
47features = ["full"]
48
49[features]
50repr_c = []
51