2024-01-17 02:59:48 +08:00
|
|
|
[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"
|
2025-03-04 08:09:43 +08:00
|
|
|
etcetera = "0.10"
|
2025-01-31 08:51:34 +08:00
|
|
|
ropey.workspace = true
|
2025-06-10 22:42:04 +08:00
|
|
|
which = "8.0"
|
2025-03-04 08:09:43 +08:00
|
|
|
regex-cursor = "0.1.5"
|
2025-01-14 07:26:31 +08:00
|
|
|
bitflags.workspace = true
|
2025-03-11 21:29:38 +08:00
|
|
|
once_cell = "1.21"
|
2024-11-26 08:06:54 +08:00
|
|
|
regex-automata = "0.4.9"
|
2025-01-27 05:52:29 +08:00
|
|
|
unicode-segmentation.workspace = true
|
2024-04-01 06:43:09 +08:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2025-06-17 21:54:41 +08:00
|
|
|
windows-sys = { version = "0.60", features = ["Win32_Foundation", "Win32_Security", "Win32_Security_Authorization", "Win32_Storage_FileSystem", "Win32_System_Threading"] }
|
2024-04-01 06:43:09 +08:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2025-03-11 22:34:08 +08:00
|
|
|
rustix = { version = "1.0", features = ["fs"] }
|
2024-01-17 02:59:48 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-01-07 08:34:21 +08:00
|
|
|
tempfile.workspace = true
|