mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-04 11:53:18 +03:00
68 lines
1.4 KiB
TOML
68 lines
1.4 KiB
TOML
[package]
|
|
name = "gitbutler-git"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "gitbutler-git-askpass"
|
|
path = "src/bin/askpass.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
name = "gitbutler-git-setsid"
|
|
path = "src/bin/setsid.rs"
|
|
test = false
|
|
|
|
[features]
|
|
default = ["serde", "tokio"]
|
|
serde = ["dep:serde"]
|
|
tokio = ["dep:tokio"]
|
|
## a flag that is needed for integration tests that run this code to work.
|
|
test-askpass-path = []
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
serde = { workspace = true, optional = true }
|
|
tokio = { workspace = true, optional = true, features = [
|
|
"process",
|
|
"time",
|
|
"io-util",
|
|
"net",
|
|
"fs",
|
|
] }
|
|
uuid = { workspace = true, features = ["v4", "fast-rng"] }
|
|
rand = "0.8.5"
|
|
futures = "0.3.30"
|
|
sysinfo = "0.30.12"
|
|
gix-path = "0.10.7"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
nix = { version = "0.29.0", features = ["process", "socket", "user"] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
windows = { version = "0.57.0", features = [
|
|
"Win32",
|
|
"Win32_System",
|
|
"Win32_System_Pipes",
|
|
"Win32_Storage",
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_Security",
|
|
"Win32_System_IO",
|
|
"Win32_System_Threading",
|
|
] }
|
|
tokio = { workspace = true, optional = true, features = ["sync"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.14"
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
|
|
[lints.clippy]
|
|
all = "deny"
|
|
perf = "deny"
|
|
correctness = "deny"
|