-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (76 loc) · 1.96 KB
/
Cargo.toml
File metadata and controls
95 lines (76 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[workspace]
resolver = "3"
members = [".", "crates/*", "examples/*"]
default-members = [".", "crates/*"]
[workspace.package]
version = "0.5.4"
edition = "2024"
license = "MIT"
readme = "README.md"
documentation = "https://aacebo.github.io/zyn"
homepage = "https://aacebo.github.io/zyn"
repository = "https://www.github.com/aacebo/zyn"
keywords = ["macro", "framework", "proc", "rust"]
categories = ["development-tools::procedural-macro-helpers", "rust-patterns", "no-std"]
[workspace.dependencies]
zyn-core = { path = "./crates/zyn-core", version = "=0.5.4" }
zyn-derive = { path = "./crates/zyn-derive", version = "=0.5.4" }
# ----------- Package ----------- #
[package]
name = "zyn"
description = "A proc macro framework with templates, composable elements, and built-in diagnostics"
version.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
documentation.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
exclude = ["assets", "book", "examples"]
[package.metadata.docs.rs]
all-features = true
[lib]
doctest = false
[features]
default = ["derive"]
derive = ["zyn-derive"]
ext = ["zyn-core/ext"]
pretty = ["zyn-core/pretty", "zyn-derive/pretty"]
diagnostics = ["zyn-core/diagnostics", "zyn-derive/diagnostics"]
[dependencies]
zyn-core = { workspace = true }
zyn-derive = { workspace = true, optional = true }
[dev-dependencies]
zyn-core = { workspace = true }
darling = "0.23"
heck = "0.5"
[[bench]]
name = "expand"
[[bench]]
name = "attr"
[[bench]]
name = "case"
[[test]]
name = "zyn"
path = "tests/zyn/mod.rs"
[[test]]
name = "element"
path = "tests/element/mod.rs"
[[test]]
name = "pipe"
path = "tests/pipe/mod.rs"
[[test]]
name = "attribute"
path = "tests/attribute/mod.rs"
[[test]]
name = "debug"
path = "tests/debug/mod.rs"
[[test]]
name = "diagnostics"
path = "tests/diagnostics/mod.rs"
[[test]]
name = "ext"
path = "tests/ext/mod.rs"
required-features = ["ext"]