2023-10-22 11:34:20 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-plugin"
|
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 plugin system"
|
|
|
|
homepage = "https://yazi-rs.github.io"
|
|
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
|
2024-04-24 13:49:46 +03:00
|
|
|
[features]
|
|
|
|
default = [ "vendored-lua" ]
|
|
|
|
vendored-lua = [ "mlua/vendored" ]
|
|
|
|
|
2023-10-22 11:34:20 +03:00
|
|
|
[dependencies]
|
2024-04-23 11:35:17 +03:00
|
|
|
yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.5" }
|
|
|
|
yazi-boot = { path = "../yazi-boot", version = "0.2.5" }
|
|
|
|
yazi-config = { path = "../yazi-config", version = "0.2.5" }
|
|
|
|
yazi-dds = { path = "../yazi-dds", version = "0.2.5" }
|
|
|
|
yazi-proxy = { path = "../yazi-proxy", version = "0.2.5" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-03-15 21:29:37 +03:00
|
|
|
ansi-to-tui = "3.1.0"
|
2024-04-13 05:33:42 +03:00
|
|
|
anyhow = "1.0.82"
|
2024-05-07 08:42:45 +03:00
|
|
|
base64 = "0.22.1"
|
2024-05-01 15:43:01 +03:00
|
|
|
crossterm = "0.27.0"
|
2024-03-15 21:29:37 +03:00
|
|
|
futures = "0.3.30"
|
|
|
|
md-5 = "0.10.6"
|
2024-04-24 13:49:46 +03:00
|
|
|
mlua = { version = "0.9.7", features = [ "lua54", "serialize", "macros", "async" ] }
|
2024-05-07 08:42:45 +03:00
|
|
|
parking_lot = "0.12.2"
|
2024-04-17 06:07:54 +03:00
|
|
|
ratatui = "=0.26.1"
|
2024-05-07 08:42:45 +03:00
|
|
|
serde = "1.0.199"
|
2024-04-17 06:07:54 +03:00
|
|
|
serde_json = "1.0.116"
|
2024-03-15 21:29:37 +03:00
|
|
|
shell-escape = "0.1.5"
|
|
|
|
shell-words = "1.1.0"
|
|
|
|
syntect = { version = "5.2.0", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
|
2024-04-02 15:50:36 +03:00
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|
2024-03-15 21:29:37 +03:00
|
|
|
tokio-util = "0.7.10"
|
2024-05-07 08:42:45 +03:00
|
|
|
unicode-width = "0.1.12"
|
2024-01-01 17:07:06 +03:00
|
|
|
yazi-prebuild = "0.1.2"
|
2024-01-02 20:32:29 +03:00
|
|
|
|
2024-04-02 15:50:36 +03:00
|
|
|
# Logging
|
|
|
|
tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_level_warn" ] }
|
|
|
|
|
2024-01-02 20:32:29 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
2024-05-07 08:42:45 +03:00
|
|
|
uzers = "0.12.0"
|
2024-05-01 15:43:01 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
clipboard-win = "5.3.1"
|