WIP: List the most recent change to each top-level entry in a git tree
at main 514 B view raw
1[package] 2name = "glc" 3version = "0.1.0" 4description = "Find the latest commit for each entry in a git tree" 5authors = ["tjh <x@tjh.dev>"] 6license = "MIT" 7edition = "2024" 8rust-version = "1.90" 9publish = false 10 11[dependencies] 12anyhow = "1.0.98" 13clap = { version = "4.5.39", features = ["derive"] } 14gix = { version = "0.73.0", default-features = false, features = ["max-performance"] } 15time = { version = "0.3.41", features = ["formatting"] } 16 17[features] 18time-budget = [] 19 20[profile.release] 21strip = true 22lto = "fat"