ci

CI for all possible combinations of features in Cargo.toml.
git clone https://git.philomathiclife.com/repos/ci
Log | Files | Refs | README

Cargo.toml (810B)


      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.1.1"
     14 
     15 [badges]
     16 maintenance = { status = "actively-developed" }
     17 
     18 [dependencies]
     19 serde = { version = "1.0.210", default-features = false }
     20 toml = { version = "0.8.19", default-features = false, features = ["parse"] }
     21 
     22 [profile.release]
     23 lto = true
     24 panic = 'abort'
     25 strip = true