2023-10-22 11:34:20 +03:00
|
|
|
[package]
|
2024-06-08 14:28:46 +03:00
|
|
|
name = "yazi-adapter"
|
2024-08-15 17:36:57 +03:00
|
|
|
version = "0.3.1"
|
2023-10-22 11:34:20 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
2024-06-08 14:28:46 +03:00
|
|
|
description = "Yazi image adapter"
|
2023-10-22 11:34:20 +03:00
|
|
|
homepage = "https://yazi-rs.github.io"
|
|
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-15 17:36:57 +03:00
|
|
|
yazi-config = { path = "../yazi-config", version = "0.3.1" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-08-03 05:45:46 +03:00
|
|
|
ansi-to-tui = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
arc-swap = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
2024-03-15 21:29:37 +03:00
|
|
|
color_quant = "1.1.0"
|
2024-08-03 05:45:46 +03:00
|
|
|
crossterm = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
2024-07-28 03:14:53 +03:00
|
|
|
image = "0.25.2"
|
2024-06-18 11:26:29 +03:00
|
|
|
imagesize = "0.13.0"
|
2024-03-15 21:29:37 +03:00
|
|
|
kamadak-exif = "0.5.5"
|
2024-08-03 05:45:46 +03:00
|
|
|
ratatui = { workspace = true }
|
|
|
|
scopeguard = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
2024-07-20 11:26:37 +03:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-08-03 05:45:46 +03:00
|
|
|
crossterm = { workspace = true, features = [ "use-dev-tty" ] }
|