git-transport 0.5.1

A WIP crate of the gitoxide project dedicated to implementing the git transport layer
Documentation
[package]
name = "git-transport"
version = "0.5.1"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "A WIP crate of the gitoxide project dedicated to implementing the git transport layer"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2018"
include = ["src/**/*"]

[lib]
doctest = false

[features]
serde1 = ["serde"]
http-client-curl = ["curl", "base64", "git-features/io-pipe"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
git-features = { version = "^0.10.0", path = "../git-features" }
git-url = { version = "^0.1.0", path = "../git-url" }
git-packetline = { version = "^0.4.0", path = "../git-packetline" }

serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"]}
quick-error = "2.0.0"
bstr = { version = "0.2.13", default-features = false, features = ["std"] }

# for http-client-curl
curl = { version = "0.4", optional = true, features = ["static-ssl", "static-curl"] }
thiserror = "1.0.20"
base64 = { version = "0.13.0", optional = true }