mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 14:51:03 +00:00
45 lines
1.5 KiB
TOML
45 lines
1.5 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-binding = { path = "../yazi-binding", version = "26.5.6" }
|
|
yazi-dds = { path = "../yazi-dds", 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-term = { path = "../yazi-term", version = "26.5.6" }
|
|
yazi-tty = { path = "../yazi-tty", version = "26.5.9" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
dyn-clone = { workspace = true }
|
|
futures = { workspace = true }
|
|
inventory = { workspace = true }
|
|
mlua = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
ratatui-core = { workspace = true }
|
|
ratatui-widgets = { workspace = true }
|
|
serde = { workspace = true }
|
|
strum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
unicode-width = { workspace = true }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
clipboard-win = "5.4.1"
|