mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
27 lines
758 B
TOML
27 lines
758 B
TOML
[package]
|
|
name = "yazi-term"
|
|
version = "26.1.22"
|
|
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"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
yazi-macro = { path = "../yazi-macro", version = "26.1.22" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.1.22" }
|
|
|
|
# External dependencies
|
|
crossterm = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|