mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
33 lines
1 KiB
TOML
33 lines
1 KiB
TOML
[package]
|
|
name = "yazi-term"
|
|
description = "Yazi terminal extensions"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
yazi-config = { path = "../yazi-config", version = "26.2.2" }
|
|
yazi-emulator = { path = "../yazi-emulator", version = "26.2.2" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.2.2" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.2.2" }
|
|
yazi-shim = { path = "../yazi-shim", version = "26.2.2" }
|
|
yazi-tty = { path = "../yazi-tty", version = "26.2.2" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|