-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
36 lines (33 loc) · 860 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "git2_credentials"
version = "0.15.0"
authors = ["David Bernard <[email protected]>"]
edition = "2021"
description = "Provide credential function to used with git2::RemoteCallbacks.credentials"
readme = "README.md"
license = "Apache-2.0"
keywords = ["git"]
repository = "https://github.com/davidB/git2_credentials"
homepage = "https://github.com/davidB/git2_credentials"
exclude = [
"/.github",
".dependabot/",
"/docs/**",
"/scripts",
".gitignore",
"/tests/**",
]
[dependencies]
dirs = "^5.0"
git2 = { version = "^0.20", default-features = false }
dialoguer = { version = "^0.11", optional = true }
pest = "^2.3"
pest_derive = "^2.3"
regex = "^1.6"
[dev-dependencies]
pretty_assertions = "1.3"
tempfile = "3.3"
git2 = { version = "^0.20" }
[features]
default = ["ui4dialoguer"]
ui4dialoguer = ["dialoguer"]