2024-01-16 19:59:48 +01: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"
|
|
|
|
etcetera = "0.8"
|
2023-12-01 00:03:27 +01:00
|
|
|
ropey = { version = "1.6.1", default-features = false }
|
2024-01-23 15:29:07 +01:00
|
|
|
which = "6.0"
|
2024-03-15 20:44:08 +01:00
|
|
|
regex-cursor = "0.1.4"
|
2024-06-25 16:22:20 +02:00
|
|
|
bitflags = "2.6"
|
2024-04-01 00:43:09 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows-sys = { version = "0.52", features = ["Win32_Security", "Win32_Security_Authorization", "Win32_System_Threading"] }
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
rustix = { version = "0.38", features = ["fs"] }
|
2024-01-16 19:59:48 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-12 02:23:24 +01:00
|
|
|
tempfile = "3.10"
|