Raw
1 [package]
2 name = "libgit"
3 version = "0.1.0"
4 edition = "2021"
5 build = "build.rs"
6 rust-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]
11 path = "src/lib.rs"
12
13 [dependencies]
14 libgit-sys = { version = "0.1.0", path = "../libgit-sys" }
15
16 [build-dependencies]
17 autocfg = "1.4.0"