mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
32 lines
1.3 KiB
TOML
32 lines
1.3 KiB
TOML
[package]
|
|
name = "yazi-adapter"
|
|
version = "25.6.11"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
description = "Yazi image adapter"
|
|
homepage = "https://yazi-rs.github.io"
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
[dependencies]
|
|
yazi-config = { path = "../yazi-config", version = "25.6.11" }
|
|
yazi-fs = { path = "../yazi-fs", version = "25.6.11" }
|
|
yazi-macro = { path = "../yazi-macro", version = "25.6.11" }
|
|
yazi-shared = { path = "../yazi-shared", version = "25.6.11" }
|
|
yazi-term = { path = "../yazi-term", version = "25.6.11" }
|
|
|
|
# External dependencies
|
|
ansi-to-tui = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
image = { version = "0.25.6", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "webp" ] }
|
|
palette = { version = "0.7.6", default-features = false }
|
|
quantette = { version = "0.3.0", default-features = false }
|
|
ratatui = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|