-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (47 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "macon"
version = "1.2.1"
edition = "2021"
authors = ["Logan Mzz"]
license = "MIT OR Apache-2.0"
description = "Another builder macro-based generator with its own idioms."
homepage = "https://github.com/loganmzz/macon-rs"
repository = "https://github.com/loganmzz/macon-rs"
readme = "CRATES_IO.md"
keywords = [
"builder",
"derive",
"macro",
"setter",
]
categories = [
"rust-patterns",
]
[dependencies]
macon_derive = { version = "=1.2.1", path = "macon_derive" }
macon_api = { version = "=1.2.1", path = "macon_api" }
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
[workspace]
members = [
"macon_tools",
"macon_derive",
"macon_api",
]
default-members = [
".",
"macon_derive",
"macon_api",
]
[workspace.package]
version = "1.2.1"
edition = "2021"
authors = ["Logan Mzz"]
license = "MIT OR Apache-2.0"
description = "Another builder macro-based generator with its own idioms."
homepage = "https://github.com/loganmzz/macon-rs"
repository = "https://github.com/loganmzz/macon-rs"
[workspace.dependencies]
proc-macro2 = "1.0.73"
quote = "1.0.34"
syn = "2.0.44"