mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2025-01-01 14:04:57 +03:00
6aaf2d89ec
Bumps the rust-updates group with 3 updates: [tokio](https://github.com/tokio-rs/tokio), [sysinfo](https://github.com/GuillaumeGomez/sysinfo) and [rstest](https://github.com/la10736/rstest). Updates `tokio` from 1.39.3 to 1.40.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.40.0) Updates `sysinfo` from 0.31.3 to 0.31.4 - [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md) - [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.31.3...v0.31.4) Updates `rstest` from 0.21.0 to 0.22.0 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](https://github.com/la10736/rstest/compare/v0.21.0...v0.22.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-updates - dependency-name: sysinfo dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-updates - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-updates ... Signed-off-by: dependabot[bot] <support@github.com>
70 lines
1.4 KiB
TOML
70 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 = []
|
|
## a flag to indicate benchmarks are run
|
|
benches = []
|
|
|
|
[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.workspace = true
|
|
sysinfo = "0.31.4"
|
|
gix-path = "0.10.9"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
nix = { version = "0.29.0", features = ["process", "socket", "user"] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
windows = { version = "0.58.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.15"
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
|
|
[lints.clippy]
|
|
all = "deny"
|
|
perf = "deny"
|
|
correctness = "deny"
|