-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 951 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 951 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
lints.workspace = true
[package]
name = "gix-prompt"
version = "0.15.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project for handling prompts in the terminal"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2024"
include = ["/src/**/*", "/LICENSE-*", "/README.md"]
rust-version = "1.85"
[lib]
doctest = false
[dependencies]
gix-command = { version = "^0.9.0", path = "../gix-command" }
gix-config-value = { version = "^0.18.0", path = "../gix-config-value" }
thiserror = "2.0.18"
[target.'cfg(unix)'.dependencies]
rustix = { version = "1.1.2", features = ["termios"] }
parking_lot = "0.12.4"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
serial_test = { version = "3.4.0", default-features = false }
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "macos"))'.dev-dependencies]
expectrl = "0.7.0"