Cargo.toml (752B)
1 [package] 2 authors = ["Zack Newman <zack@philomathiclife.com>"] 3 categories = ["command-line-utilities", "development-tools::testing", "rust-patterns"] 4 description = "Continuous integration for Clippy, unit tests, and doc tests for all possible features." 5 documentation = "https://git.philomathiclife.com/ci/file/README.md.html" 6 edition = "2021" 7 keywords = ["cargo", "ci", "rust"] 8 license = "MIT OR Apache-2.0" 9 name = "ci" 10 readme = "README.md" 11 repository = "https://git.philomathiclife.com/repos/ci/" 12 rust-version = "1.81.0" 13 version = "0.2.1" 14 15 [dependencies] 16 serde = { version = "1.0.215", default-features = false } 17 toml = { version = "0.8.19", default-features = false, features = ["parse"] } 18 19 [profile.release] 20 lto = true 21 panic = 'abort' 22 strip = true