-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 947 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
lints.workspace = true
[package]
name = "gix-path"
version = "0.12.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing paths and their conversions"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2024"
include = ["/src/**/*", "/LICENSE-*"]
rust-version = "1.85"
[lib]
doctest = true
[dependencies]
gix-trace = { version = "^0.1.19", path = "../gix-trace" }
gix-validate = { version = "^0.11.1", path = "../gix-validate" }
bstr = { version = "1.12.0", default-features = false, features = ["std"] }
thiserror = "2.0.18"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
serial_test = { version = "3.4.0", default-features = false }
[target.'cfg(windows)'.dev-dependencies]
windows = { version = "0.62.1", features = [
"Win32_System_Com",
"Win32_System_Threading",
"Win32_UI_Shell",
] }
winreg = "0.56.0"