-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 909 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 909 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 = "error-stack-macros2"
version = "0.1.0"
authors = ["LuisFerLCC"]
edition = "2024"
rust-version = "1.90.0"
description = "Community-made procedural macros for error-stack."
readme = "../README.md"
repository = "https://github.com/LuisFerLCC/error-stack-macros2"
license = "Apache-2.0"
keywords = ["error", "errorstack", "error-handling", "macros", "proc-macro"]
categories = ["development-tools", "rust-patterns"]
[lib]
proc-macro = true
[lints.rust]
missing_docs = "warn"
single_use_lifetimes = "warn"
unconditional_recursion = "deny"
unit_bindings = "warn"
unnameable_types = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_lifetimes = "warn"
[lints.clippy]
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
[dependencies]
proc-macro2 = "1.0.101"
quote = "1.0.40"
regex = "1.11.2"
syn = { version = "2.0.106", features = [] }
[dev-dependencies]
error-stack = "0.6.0"