-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 772 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (32 loc) · 772 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
32
33
34
35
36
37
38
39
[package]
name = "enum-as-inner"
version = "0.7.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
edition = "2018"
description = """
A proc-macro for deriving inner field accessor functions on enums.
"""
documentation = "https://docs.rs/enum-as-inner"
repository = "https://github.com/bluejekyll/enum-as-inner"
readme = "README.md"
license = "MIT/Apache-2.0"
[lib]
proc-macro = true
[dependencies]
heck = "0.5"
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
[lints.rust]
missing_copy_implementations = "warn"
missing_docs = "warn"
non_snake_case = "warn"
non_upper_case_globals = "warn"
rust_2018_idioms = "warn"
unreachable_pub = "warn"
[lints.clippy]
default_trait_access = "warn"
dbg_macro = "warn"
print_stdout = "warn"
unimplemented = "warn"
use_self = "warn"