Git fork
1[package]
2name = "libgit"
3version = "0.1.0"
4edition = "2021"
5build = "build.rs"
6rust-version = "1.63" # TODO: Once we hit 1.84 or newer, we may want to remove Cargo.lock from
7 # version control. See https://lore.kernel.org/git/Z47jgK-oMjFRSslr@tapette.crustytoothpaste.net/
8
9
10[lib]
11path = "src/lib.rs"
12
13[dependencies]
14libgit-sys = { version = "0.1.0", path = "../libgit-sys" }
15
16[build-dependencies]
17autocfg = "1.4.0"