[package]
edition = "2021"
rust-version = "1.85"
name = "gunnar-sendpack"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "git's receive-pack wire format, both ends: the send-pack conversation gitoxide does not have, plus the server-side encoders for the same grammar. Plumbing only, no gunnar types."
readme = false
keywords = [
"git",
"push",
"send-pack",
"receive-pack",
"protocol",
]
categories = [
"development-tools",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vetra-automation/gunnar"
resolver = "3"
[features]
blocking-io = ["dep:gix-packetline"]
default = ["blocking-io"]
[lib]
name = "gunnar_sendpack"
path = "src/lib.rs"
[[test]]
name = "against_real_git"
path = "tests/against_real_git.rs"
[[test]]
name = "donation_shape"
path = "tests/donation_shape.rs"
[[test]]
name = "driver"
path = "tests/driver.rs"
[[test]]
name = "grammar"
path = "tests/grammar.rs"
[[test]]
name = "remote_refusal"
path = "tests/remote_refusal.rs"
[[test]]
name = "silent_success"
path = "tests/silent_success.rs"
[dependencies.bstr]
version = "1"
features = ["std"]
default-features = false
[dependencies.gix-hash]
version = "0.26"
features = [
"sha1",
"sha256",
]
[dependencies.gix-packetline]
version = "0.22"
features = ["blocking-io"]
optional = true
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"