-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 824 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 824 Bytes
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
[package]
name = "git2_credentials"
version = "0.16.0"
edition = "2024"
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 = "^6.0"
git2 = { version = "^0.21", default-features = false, features = ["cred"] }
dialoguer = { version = "^0.12", optional = true }
pest = "^2.3"
pest_derive = "^2.3"
regex = "^1.6"
[dev-dependencies]
pretty_assertions = "1.3"
tempfile = "3.3"
git2 = { version = "^0.21" }
[features]
default = ["ui4dialoguer"]
ui4dialoguer = ["dialoguer"]