Cargo.toml (694B)
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 = "2024" 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.86.0" 12 version = "0.1.6" 13 14 [dependencies] 15 jiff = { version = "0.2.2", default-features = false } 16 17 [target.'cfg(target_os = "openbsd")'.dependencies] 18 priv_sep = { version = "2.2.0", default-features = false, features = ["openbsd"] } 19 20 [profile.release] 21 lto = true 22 panic = 'abort' 23 strip = true