lints.workspace = true
[package]
name = "gix-protocol"
version = "0.46.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project for implementing git protocols"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*", "!**/tests/**/*"]
rust-version = "1.65"
[lib]
doctest = false
[features]
blocking-client = ["gix-transport/blocking-client", "maybe-async/is_sync"]
async-client = [
"gix-transport/async-client",
"async-trait",
"futures-io",
"futures-lite",
]
serde = ["dep:serde", "bstr/serde", "gix-transport/serde", "gix-hash/serde"]
[[test]]
name = "blocking-client-protocol"
path = "tests/blocking-protocol.rs"
required-features = ["blocking-client"]
[[test]]
name = "async-client-protocol"
path = "tests/async-protocol.rs"
required-features = ["async-client"]
[dependencies]
gix-features = { version = "^0.39.0", path = "../gix-features", features = [
"progress",
] }
gix-transport = { version = "^0.43.0", path = "../gix-transport" }
gix-hash = { version = "^0.15.0", path = "../gix-hash" }
gix-date = { version = "^0.9.1", path = "../gix-date" }
gix-credentials = { version = "^0.25.0", path = "../gix-credentials" }
gix-utils = { version = "^0.1.13", path = "../gix-utils" }
thiserror = "1.0.32"
serde = { version = "1.0.114", optional = true, default-features = false, features = [
"derive",
] }
bstr = { version = "1.3.0", default-features = false, features = [
"std",
"unicode",
] }
winnow = { version = "0.6", features = ["simd"] }
async-trait = { version = "0.1.51", optional = true }
futures-io = { version = "0.3.16", optional = true }
futures-lite = { version = "2.1.0", optional = true }
maybe-async = "0.2.6"
document-features = { version = "0.2.0", optional = true }
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
gix-packetline = { path = "../gix-packetline", version = "^0.18.0" }
gix-testtools = { path = "../tests/tools" }
[package.metadata.docs.rs]
features = ["blocking-client", "document-features", "serde"]