mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
36 lines
1.4 KiB
TOML
36 lines
1.4 KiB
TOML
[package]
|
|
name = "yazi-adapter"
|
|
description = "Yazi image adapter"
|
|
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.5.6" }
|
|
yazi-emulator = { path = "../yazi-emulator", version = "26.5.6" }
|
|
yazi-fs = { path = "../yazi-fs", 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
|
|
ansi-to-tui = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
base64 = { workspace = true }
|
|
image = { version = "0.25.10", default-features = false, features = [ "avif", "bmp", "dds", "exr", "ff", "gif", "hdr", "ico", "jpeg", "png", "pnm", "qoi", "tga", "tiff", "webp" ] }
|
|
moxcms = "0.8.1"
|
|
palette = { version = "0.7.6", default-features = false }
|
|
quantette = { version = "0.6.0", default-features = false }
|
|
ratatui = { workspace = true }
|
|
strum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|