-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 753 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 753 Bytes
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
[package]
name = "giftwrap"
version = "0.5.0"
authors = ["axel paulander <axel.paulander@gmail.com>"]
edition = "2021"
description = "Wrap and unwrap your types the stylish way"
license = "MIT OR Apache-2.0"
repository = "https://github.com/strosel/giftwrap"
readme = "readme.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
quote = "1.0"
proc-macro2 = "1.0"
harled = {version = "0.4", path = "../harled"}
toml = "0.5"
[dependencies.syn]
version = "1.0"
features = ["extra-traits", "parsing", "printing", "derive"]
[dependencies.serde]
version = "1.0"
default-features = false
features = ["derive"]
[workspace.metadata.workspaces]
no_individual_tags = true