-
Notifications
You must be signed in to change notification settings - Fork 67
/
Cargo.toml
42 lines (35 loc) · 1.02 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
[package]
name = "darling"
version = "0.20.10"
authors = ["Ted Driggs <[email protected]>"]
repository = "https://github.com/TedDriggs/darling"
documentation = "https://docs.rs/darling/0.20.10"
description = """
A proc-macro library for reading attributes into structs when
implementing custom derives.
"""
license = "MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.56"
exclude = ["/.travis.yml", "/publish.sh", "/.github/**"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
darling_core = { version = "=0.20.10", path = "core" }
darling_macro = { version = "=0.20.10", path = "macro" }
[dev-dependencies]
proc-macro2 = "1.0.86"
quote = "1.0.18"
syn = "2.0.15"
[target.'cfg(compiletests)'.dev-dependencies]
rustversion = "1.0.9"
trybuild = "1.0.89"
[features]
default = ["suggestions"]
diagnostics = ["darling_core/diagnostics"]
suggestions = ["darling_core/suggestions"]
[workspace]
members = ["macro", "core"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(compiletests)'] }