[package]
edition = "2021"
name = "nornir-git"
version = "0.1.3"
build = false
exclude = ["/.nornir/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust git helpers over gix — read-side inspection (gitio), history deep-clean / path-removal (gitclean), and an SSH transport bridge (russh → gix blocking I/O). No `git` binary, no libgit2/C; the airgap-clean git leaf lifted out of nornir."
readme = false
keywords = [
"git",
"gix",
"gitoxide",
"history",
"ssh",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/nordisk/nornir"
resolver = "3"
[features]
testmatrix = [
"dep:nornir-testmatrix",
"nornir-testmatrix/testmatrix",
]
[lib]
name = "nornir_git"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.gix]
version = "0.84"
features = [
"tree-editor",
"status",
"blocking-network-client",
"blocking-http-transport-reqwest-rust-tls",
"sha256",
]
[dependencies.nornir-testmatrix]
version = "0.2.7"
optional = true
[dependencies.russh]
version = "0.61"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"io-std",
"io-util",
"sync",
"fs",
"time",
]
[dependencies.tokio-util]
version = "0.7"
features = ["io-util"]
[dev-dependencies.tempfile]
version = "3"