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.56"
15name = "enumn"
16version = "0.1.14"
17authors = ["David Tolnay <[email protected]>"]
18build = false
19autobins = false
20autoexamples = false
21autotests = false
22autobenches = false
23description = "Convert number to enum"
24documentation = "https://docs.rs/enumn"
25readme = "README.md"
26keywords = [
27    "enum",
28    "integer",
29]
30categories = [
31    "rust-patterns",
32    "no-std",
33    "no-std::no-alloc",
34]
35license = "MIT OR Apache-2.0"
36repository = "https://github.com/dtolnay/enumn"
37
38[package.metadata.docs.rs]
39rustdoc-args = ["--generate-link-to-definition"]
40targets = ["x86_64-unknown-linux-gnu"]
41
42[lib]
43name = "enumn"
44path = "src/lib.rs"
45proc-macro = true
46
47[[test]]
48name = "test"
49path = "tests/test.rs"
50
51[dependencies.proc-macro2]
52version = "1.0.74"
53
54[dependencies.quote]
55version = "1.0.35"
56
57[dependencies.syn]
58version = "2.0.46"
59