/ Cargo.toml
Cargo.toml
1 [package] 2 name = "lifetime" 3 version = "0.1.0" 4 edition = "2021" 5 authors = ["Sebastian Martinez <me@sebastinez.dev>"] 6 description = "Every lifetime matters" 7 readme = "README.md" 8 license = "MIT" 9 keywords = ["genealogy", "gedcom"] 10 categories = ["cli", "encoding"] 11 12 [dependencies] 13 serde = { version = "1.0.228", features = ["derive"] } 14 serde_json = { version = "1.0.145" } 15 chrono = { version = "0.4", features = ["serde"] } 16 thiserror = { version = "1.0" } 17 uuid = { version = "1.6", features = ["v4", "serde"] } 18 regex = { version = "1.10" } 19 20 [[bin]] 21 name = "lifetime" 22 path = "src/main.rs" 23 24 [profile.release] 25 opt-level = 3 26 lto = true 27 codegen-units = 1 28 strip = true 29 panic = "abort"