mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-02 02:17:44 +03:00
* build(deps): bump rustix from 0.38.44 to 1.0.2 Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.38.44 to 1.0.2. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.44...v1.0.2) --- updated-dependencies: - dependency-name: rustix dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Drop unnecessary unsafe blocks for rustix Uid and Gid types * Revert spurious downgrade of windows-sys --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
32 lines
877 B
TOML
32 lines
877 B
TOML
[package]
|
|
name = "helix-stdx"
|
|
description = "Standard library extensions"
|
|
include = ["src/**/*", "README.md"]
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[dependencies]
|
|
dunce = "1.0"
|
|
etcetera = "0.10"
|
|
ropey.workspace = true
|
|
which = "7.0"
|
|
regex-cursor = "0.1.5"
|
|
bitflags.workspace = true
|
|
once_cell = "1.21"
|
|
regex-automata = "0.4.9"
|
|
unicode-segmentation.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_Security", "Win32_Security_Authorization", "Win32_Storage_FileSystem", "Win32_System_Threading"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
rustix = { version = "1.0", features = ["fs"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|