mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "yazi-widgets"
|
|
description = "Yazi user interface widgets"
|
|
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
|
|
|
|
[features]
|
|
default = [ "vendored-lua" ]
|
|
vendored-lua = [ "mlua/vendored" ]
|
|
|
|
[dependencies]
|
|
yazi-adapter = { path = "../yazi-adapter", version = "26.5.6" }
|
|
yazi-config = { path = "../yazi-config", version = "26.5.6" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.5.6" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.5.6" }
|
|
yazi-shim = { path = "../yazi-shim", version = "26.5.6" }
|
|
yazi-tty = { path = "../yazi-tty", version = "26.5.9" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
futures = { workspace = true }
|
|
mlua = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true }
|
|
unicode-width = { workspace = true }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
clipboard-win = "5.4.1"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|