mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
30 lines
996 B
TOML
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" ] }
|