-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 912 Bytes
/
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
[package]
name = "gset"
version = "1.1.0"
authors = ["Andrew Sonin <[email protected]>"]
description = "A procedural macro for generating the most basic getters and setters on fields."
categories = ["development-tools::procedural-macro-helpers"]
keywords = ["macro", "getter", "setter", "getters", "setters"]
documentation = "https://docs.rs/gset/"
repository = "https://github.com/andrewsonin/gset"
homepage = "https://github.com/andrewsonin/gset"
readme = "README.md"
license = "MIT"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
derive_more = "0.99"
lazy_format = "2"
quote = "1"
printable = "2"
proc-macro-error = "1"
proc-macro2 = "1"
syn = "1"
[lints.rust]
rust_2018_idioms = { level = "warn", priority = 1 }
unreachable_pub = "warn"
missing_docs = "warn"
missing_debug_implementations = "warn"
[lints.clippy]
undocumented_unsafe_blocks = "warn"
pedantic = { level = "warn", priority = 1 }