613 B · text 5af55d9
[package]
name = "gitgud_gix"
version = "0.1.0"
edition = "2021"
license = "MIT"
publish = false
[lib]
name = "gitgud_gix"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
rustler = "0.34"
gix = { version = "0.66", default-features = false, features = [
"blocking-network-client",
"max-performance-safe",
"revision",
"blob-diff",
] }
gix-hash = "0.15"
thiserror = "1"
once_cell = "1"
# chrono converts gix's unix-seconds Time into the year/month/day/...
# fields we need to populate an Elixir `%DateTime{}` from Rust.
chrono = { version = "0.4", default-features = false, features = ["std"] }