git_index

Generates arguments to pass to stagit-index in descending order by commit date.
git clone https://git.philomathiclife.com/repos/git_index
Log | Files | Refs | README

Cargo.toml (777B)


      1 [package]
      2 authors = ["Zack Newman <zack@philomathiclife.com>"]
      3 categories = ["command-line-utilities"]
      4 description = "Invokes stagit-index by passing repos in descending chronological order by commit data."
      5 edition = "2021"
      6 keywords = ["git", "stagit"]
      7 license = "MIT OR Apache-2.0"
      8 name = "git_index"
      9 readme = "README.md"
     10 repository = "https://git.philomathiclife.com/repos/git_index/"
     11 rust-version = "1.81.0"
     12 version = "0.1.4"
     13 
     14 [badges]
     15 maintenance = { status = "actively-developed" }
     16 
     17 [dependencies]
     18 time = { version = "0.3.36", default-features = false, features = ["parsing"] }
     19 
     20 [target.'cfg(target_os = "openbsd")'.dependencies]
     21 priv_sep = { version = "2.1.0", default-features = false, features = ["openbsd"] }
     22 
     23 [profile.release]
     24 lto = true
     25 panic = 'abort'
     26 strip = true