Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sunfishcode/is-terminal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.15
Choose a base ref
...
head repository: sunfishcode/is-terminal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.16
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 7, 2025

  1. Update to dev-dependencies rustix 1.0, and hermit-abi 0.5.

    sunfishcode committed Mar 7, 2025
    Copy the full SHA
    ee36d99 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4a18365 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 Cargo.toml
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "is-terminal"
version = "0.4.15"
version = "0.4.16"
authors = [
"softprops <d.tangren@gmail.com>",
"Dan Gohman <dev@sunfishcode.online>"
@@ -19,7 +19,7 @@ rust-version = "1.63"
libc = "0.2"

[target.'cfg(target_os = "hermit")'.dependencies]
hermit-abi = "0.4.0"
hermit-abi = "0.5.0"

[target.'cfg(windows)'.dependencies.windows-sys]
version = ">=0.52, <0.60"
@@ -33,11 +33,11 @@ features = [
atty = "0.2.14"

[target.'cfg(any(unix, target_os = "wasi"))'.dev-dependencies]
rustix = { version = "0.38.44", features = ["termios"] }
rustix = { version = "1.0.0", features = ["termios"] }
libc = "0.2.110"

[target.'cfg(not(any(windows, target_os = "hermit", target_os = "unknown")))'.dev-dependencies]
rustix = { version = "0.38.0", features = ["stdio"] }
rustix = { version = "1.0.0", features = ["stdio"] }

[target.'cfg(windows)'.dev-dependencies]
tempfile = "3"