-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (41 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "educe"
version = "0.7.5"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2024"
rust-version = "1.89"
repository = "https://github.com/magiclen/educe"
homepage = "https://magiclen.org/educe"
keywords = ["derive", "macro", "trait", "field", "procedural"]
categories = ["no-std", "rust-patterns"]
description = "This crate offers procedural macros designed to facilitate the swift implementation of Rust's built-in traits."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
[lib]
proc-macro = true
[dependencies]
syn = "3"
quote = "1.0.44"
proc-macro2 = "1.0.91"
enum-ordinalize = { version = "4.4", default-features = false, features = ["derive"] }
[dev-dependencies]
syn = { version = "3", features = ["full"] }
assert-eq-float = "0.1"
[features]
default = ["Debug", "Clone", "Copy", "PartialEq", "Eq", "PartialOrd", "Ord", "Hash", "Default", "Deref", "DerefMut", "Into"]
full = ["syn/full"]
Debug = []
Clone = []
Copy = []
PartialEq = []
Eq = []
PartialOrd = []
Ord = []
Hash = []
Default = []
Deref = []
DerefMut = []
Into = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]