Adding upstream version 0.5.7.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d2d6608958
commit
8eaa1cbd39
5 changed files with 430 additions and 222 deletions
28
Cargo.toml
28
Cargo.toml
|
@ -12,9 +12,15 @@
|
|||
[package]
|
||||
edition = "2021"
|
||||
name = "auth-git2"
|
||||
version = "0.5.5"
|
||||
version = "0.5.7"
|
||||
authors = ["Maarten de Vries <maarten@de-vri.es>"]
|
||||
build = false
|
||||
publish = ["crates-io"]
|
||||
autolib = false
|
||||
autobins = false
|
||||
autoexamples = false
|
||||
autotests = false
|
||||
autobenches = false
|
||||
description = "Authentication for `git2`"
|
||||
documentation = "https://docs.rs/auth-git2"
|
||||
readme = "README.md"
|
||||
|
@ -29,11 +35,23 @@ categories = ["authentication"]
|
|||
license = "BSD-2-Clause"
|
||||
repository = "https://github.com/de-vri-es/auth-git2-rs"
|
||||
|
||||
[lib]
|
||||
name = "auth_git2"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[example]]
|
||||
name = "custom-prompt-clone"
|
||||
path = "examples/custom-prompt-clone.rs"
|
||||
|
||||
[[example]]
|
||||
name = "git"
|
||||
path = "examples/git.rs"
|
||||
|
||||
[dependencies.dirs]
|
||||
version = "5.0.1"
|
||||
version = "6.0.0"
|
||||
|
||||
[dependencies.git2]
|
||||
version = ">0.14, <20.0"
|
||||
version = ">0.14, <21.0"
|
||||
default-features = false
|
||||
|
||||
[dependencies.log]
|
||||
|
@ -51,10 +69,10 @@ version = "4.3.21"
|
|||
features = ["derive"]
|
||||
|
||||
[dev-dependencies.env_logger]
|
||||
version = "0.10.0"
|
||||
version = "0.11.6"
|
||||
|
||||
[dev-dependencies.git2]
|
||||
version = ">=0.14, <18.0"
|
||||
version = ">=0.14, <21.0"
|
||||
|
||||
[features]
|
||||
log = ["dep:log"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue