mirror of
https://github.com/Byron/gitoxide
synced 2025-10-06 01:52:40 +02:00
37 lines
1008 B
TOML
37 lines
1008 B
TOML
lints.workspace = true
|
|
|
|
[package]
|
|
name = "gix-config-value"
|
|
version = "0.14.10"
|
|
repository = "https://github.com/GitoxideLabs/gitoxide"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "A crate of the gitoxide project providing git-config value parsing"
|
|
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
include = ["src/**/*", "LICENSE-*"]
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[features]
|
|
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
|
|
serde = ["dep:serde", "bstr/serde"]
|
|
|
|
[dependencies]
|
|
gix-path = { version = "^0.10.13", path = "../gix-path" }
|
|
|
|
thiserror = "2.0.0"
|
|
bstr = { version = "1.0.1", default-features = false, features = ["std"] }
|
|
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
|
|
bitflags = "2"
|
|
|
|
document-features = { version = "0.2.0", optional = true }
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
features = ["document-features"]
|