File: Cargo.toml.orig

package info (click to toggle)
rust-gix-credentials 0.26.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,445 bytes parent folder | download
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
37
38
39
40
41
42
43
44
45
lints.workspace = true

[package]
name = "gix-credentials"
version = "0.26.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project to interact with git credentials helpers"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
rust-version = "1.65"
include = ["src/**/*", "LICENSE-*"]

[lib]
doctest = false

[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde = ["dep:serde", "bstr/serde", "gix-sec/serde"]

[dependencies]
gix-sec = { version = "^0.10.10", path = "../gix-sec" }
gix-url = { version = "^0.28.2", path = "../gix-url" }
gix-path = { version = "^0.10.13", path = "../gix-path" }
gix-command = { version = "^0.4.0", path = "../gix-command" }
gix-config-value = { version = "^0.14.10", path = "../gix-config-value" }
gix-prompt = { version = "^0.9.0", path = "../gix-prompt" }
gix-trace = { version = "^0.1.11", path = "../gix-trace" }

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



document-features = { version = "0.2.1", optional = true }

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-sec = { path = "../gix-sec" }
once_cell = "1.19.0"

[package.metadata.docs.rs]
all-features = true
features = ["document-features"]