Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
158 changes: 66 additions & 92 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ rust-version = "1.77.0"

[dependencies]
futures = { version = "0.3.30", optional = true }
indexmap = "2.2.6"
tokio = { version = "1.38.0", features = ["io-util", "macros", "process", "rt"], optional = true }
indexmap = "2.7.1"
tokio = { version = "1.44.0", features = ["io-util", "macros", "process", "rt"], optional = true }
tracing = { version = "0.1.40", optional = true }
# note: this library doesn't consider bumping the tokio minor to be
# a breaking change, so long as it remains ~6 months below current
Expand All @@ -30,13 +30,13 @@ nix = { version = "0.29.0", default-features = false, features = ["fs", "poll",
# as process-wrap is carefully designed to never expose nix's types

[target.'cfg(windows)'.dependencies]
windows = { version = "0.59.0", optional = true }
windows = { version = "0.60.0", optional = true }
# note: bumping the windows version doesn't require a breaking change,
# as process-wrap is carefully designed to never expose windows's types

[dev-dependencies]
remoteprocess = "0.5.0"
tokio = { version = "1.38.0", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] }
tokio = { version = "1.44.0", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "time"] }

[features]
default = ["creation-flags", "job-object", "kill-on-drop", "process-group", "process-session", "tracing"]
Expand Down
Loading