2023-10-22 11:34:20 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-adaptor"
|
2024-03-08 22:07:20 +03:00
|
|
|
version = "0.2.4"
|
2023-10-22 11:34:20 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
|
|
description = "Yazi image adaptor"
|
|
|
|
homepage = "https://yazi-rs.github.io"
|
|
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-08 22:07:20 +03:00
|
|
|
yazi-config = { path = "../yazi-config", version = "0.2.4" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.4" }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-04-13 05:33:42 +03:00
|
|
|
anyhow = "1.0.82"
|
2024-04-02 15:50:36 +03:00
|
|
|
arc-swap = "1.7.1"
|
2024-03-15 21:29:37 +03:00
|
|
|
base64 = "0.22.0"
|
|
|
|
color_quant = "1.1.0"
|
|
|
|
crossterm = "0.27.0"
|
2024-04-02 15:50:36 +03:00
|
|
|
futures = "0.3.30"
|
2024-04-05 12:47:17 +03:00
|
|
|
image = "0.24.9"
|
2024-03-15 21:29:37 +03:00
|
|
|
imagesize = "0.12.0"
|
|
|
|
kamadak-exif = "0.5.5"
|
|
|
|
ratatui = "0.26.1"
|
2024-04-02 15:50:36 +03:00
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# Logging
|
2024-03-15 21:29:37 +03:00
|
|
|
tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_level_warn" ] }
|