| # 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 = "educe" |
| version = "0.4.20" |
| authors = ["Magic Len <[email protected]>"] |
| include = [ |
| "src/**/*", |
| "Cargo.toml", |
| "README.md", |
| "LICENSE", |
| ] |
| description = "This crate provides procedural macros to help you implement Rust-built-in traits quickly." |
| homepage = "https://magiclen.org/educe" |
| readme = "README.md" |
| keywords = [ |
| "derive", |
| "macro", |
| "trait", |
| "field", |
| "procedural", |
| ] |
| categories = [ |
| "no-std", |
| "rust-patterns", |
| ] |
| license = "MIT" |
| repository = "https://github.com/magiclen/educe" |
| |
| [lib] |
| proc-macro = true |
| |
| [dependencies.enum-ordinalize] |
| version = "3.1" |
| |
| [dependencies.proc-macro2] |
| version = "1" |
| |
| [dependencies.quote] |
| version = "1" |
| |
| [dependencies.syn] |
| version = "1" |
| features = ["full"] |
| |
| [dev-dependencies.assert_approx_eq] |
| version = "1.1" |
| |
| [features] |
| Clone = [] |
| Copy = [] |
| Debug = [] |
| Default = [] |
| Deref = [] |
| DerefMut = [] |
| Eq = [] |
| Hash = [] |
| Ord = [] |
| PartialEq = [] |
| PartialOrd = [] |
| default = [ |
| "Debug", |
| "PartialEq", |
| "Eq", |
| "PartialOrd", |
| "Ord", |
| "Hash", |
| "Default", |
| "Clone", |
| "Copy", |
| "Deref", |
| "DerefMut", |
| ] |