-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.01 KB
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
[package]
name = "lombok-macros"
version = "2.0.27"
readme = "README.md"
edition = "2024"
authors = ["root@ltpp.vip"]
license = "MIT"
description = """A Rust procedural macro collection providing Lombok-like functionality. Automatically generates getters/setters with field-level visibility control, custom Debug implementations with field skipping, and Display trait implementations. Supports structs, enums, generics and lifetimes."""
keywords = ["proc-macro", "get-set", "macros", "lombok", "code-generation"]
repository = "https://github.com/crates-dev/lombok-macros.git"
categories = ["development-tools"]
exclude = ["target", "Cargo.lock", "sh", ".github", "debug"]
[dependencies]
syn = "2.0.117"
quote = "1.0.45"
proc-macro2 = "1.0.106"
[lib]
proc-macro = true
[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"