-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 1 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 = "synonym"
version = "0.1.6"
authors = ["Marcin Sas-Szymanski <[email protected]>"]
license-file = "LICENSE"
description = "Customizable derive macro to create newtypes. It peeks into the underlying type to choose which traits should be implemented."
homepage = "https://github.com/synek317/synonym"
documentation = "https://docs.rs/synonym"
repository = "https://github.com/synek317/synonym"
categories = ["development-tools", "rust-patterns"]
keywords = ["newtype", "newtypes", "synonym", "alias"]
edition = "2018"
[badges]
travis-ci = { repository = "synek317/synonym", branch = "master" }
maintenance = { status = "actively-developed" }
[lib]
doctest = false
proc-macro = true
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/progress.rs"
[dev-dependencies]
trybuild = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
[dependencies]
syn = { version = "2.0", default-features = false }
quote = "1.0"
proc-macro2 = "1.0"
darling = "0.20.3"
[features]
with_serde = []