2023-10-22 11:34:20 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-adaptor"
|
2024-04-23 11:35:17 +03:00
|
|
|
version = "0.2.5"
|
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-04-23 11:35:17 +03:00
|
|
|
yazi-config = { path = "../yazi-config", version = "0.2.5" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-05-08 22:01:16 +03:00
|
|
|
anyhow = "1.0.83"
|
2024-04-02 15:50:36 +03:00
|
|
|
arc-swap = "1.7.1"
|
2024-05-07 08:42:45 +03:00
|
|
|
base64 = "0.22.1"
|
2024-03-15 21:29:37 +03:00
|
|
|
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"
|
2024-04-17 06:07:54 +03:00
|
|
|
ratatui = "=0.26.1"
|
2024-04-29 20:43:04 +03:00
|
|
|
scopeguard = "1.2.0"
|
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" ] }
|