[package]
name = "gix-protocol"
version = "0.43.0"
repository = "https://github.com/Byron/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.70"
[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.37.0", path = "../gix-features", features = ["progress"] }
gix-transport = { version = "^0.40.0", path = "../gix-transport" }
gix-hash = { version = "^0.14.0", path = "../gix-hash" }
gix-date = { version = "^0.8.2", path = "../gix-date" }
gix-credentials = { version = "^0.23.0", path = "../gix-credentials" }
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.5.24", features = ["simd"] }
btoi = "0.4.2"
async-trait = { version = "0.1.51", optional = true }
futures-io = { version = "0.3.16", optional = true }
futures-lite = { workspace = true, 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.17.1" }
gix-testtools = { path = "../tests/tools" }
[package.metadata.docs.rs]
features = ["blocking-client", "document-features", "serde"]