yazi/yazi-term/Cargo.toml
Kreijstal 3ae7673274
fix: windows-sys missing a Win32_Security feature (#2728)
Co-authored-by: sxyazi <sxyazi@gmail.com>
2025-05-07 09:57:35 +08:00

30 lines
996 B
TOML

[package]
name = "yazi-term"
version = "25.4.8"
edition = "2024"
license = "MIT"
authors = [ "sxyazi <sxyazi@gmail.com>" ]
description = "Yazi terminal extensions"
homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"
rust-version = "1.85.0"
[dependencies]
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
# Logging
tracing = { workspace = true }
# External dependencies
crossterm = { workspace = true }
parking_lot = { workspace = true }
[target."cfg(unix)".dependencies]
libc = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59.0", features = [ "Win32_Globalization", "Win32_Storage_FileSystem", "Win32_System_IO", "Win32_System_Console", "Win32_System_Threading", "Win32_Security" ] }