Files
cli/vendor/educe/Cargo.toml

103 lines
1.8 KiB
TOML
Raw Normal View History

# 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"
rust-version = "1.60"
name = "educe"
version = "0.6.0"
authors = ["Magic Len <len@magiclen.org>"]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
description = "This crate offers procedural macros designed to facilitate the swift implementation of Rust's built-in traits."
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"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
proc-macro = true
[dependencies.enum-ordinalize]
version = "4.2"
features = ["derive"]
default-features = false
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
[dev-dependencies.assert-eq-float]
version = "0.1"
[dev-dependencies.rustversion]
version = "1"
[dev-dependencies.syn]
version = "2"
features = ["full"]
[features]
Clone = []
Copy = []
Debug = []
Default = []
Deref = []
DerefMut = []
Eq = []
Hash = []
Into = []
Ord = []
PartialEq = []
PartialOrd = []
default = [
"Debug",
"Clone",
"Copy",
"PartialEq",
"Eq",
"PartialOrd",
"Ord",
"Hash",
"Default",
"Deref",
"DerefMut",
"Into",
]
full = ["syn/full"]