-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1.11 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
[package]
name = "extendable-data"
version.workspace = true
authors.workspace = true
license.workspace = true
categories.workspace = true
keywords.workspace = true
repository.workspace = true
edition.workspace = true
description = "A set of rust macros that allows you to specify data that can be \"extended\" or inherited from."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["extendable-data-helpers"]
[workspace.package]
version = "0.1.4"
authors = ["Rafael Dulfer"]
repository = "https://github.com/Rafaeltheraven/extendable-data"
license = "MIT"
edition = "2021"
keywords = ["proc-macro", "extensible", "structs", "enums", "unions"]
categories = ["data-structures", "development-tools::procedural-macro-helpers", "rust-patterns"]
[workspace.dependencies]
syn = "2.0.18"
quote = "1.0.28"
proc-macro2 = "1.0.59"
[dependencies]
syn = {workspace = true}
quote = {workspace = true}
proc-macro2 = {workspace = true}
extendable-data-helpers = "0.1.4"
[dev-dependencies]
syn = {version = "2.0.18", features = ["extra-traits"]}
assert-tokenstreams-eq = "0.1.0"