2023-10-22 11:34:20 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-plugin"
|
2024-01-13 16:13:23 +03:00
|
|
|
version = "0.2.0"
|
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"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-13 16:13:23 +03:00
|
|
|
yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.0" }
|
|
|
|
yazi-config = { path = "../yazi-config", version = "0.2.0" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.0" }
|
2023-10-22 11:34:20 +03:00
|
|
|
|
|
|
|
# External dependencies
|
|
|
|
ansi-to-tui = "^3"
|
|
|
|
anyhow = "^1"
|
2023-12-26 14:48:33 +03:00
|
|
|
crossterm = "^0"
|
|
|
|
futures = "^0"
|
|
|
|
md-5 = "^0"
|
2023-12-27 22:32:39 +03:00
|
|
|
mlua = { version = "^0", features = [ "lua54", "vendored", "serialize", "macros", "async" ] }
|
2023-12-26 14:48:33 +03:00
|
|
|
parking_lot = "^0"
|
2023-10-22 11:34:20 +03:00
|
|
|
ratatui = "^0"
|
2023-12-26 14:48:33 +03:00
|
|
|
serde = "^1"
|
|
|
|
serde_json = "^1"
|
2024-01-01 17:07:06 +03:00
|
|
|
syntect = { version = "^5", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
|
2023-12-26 14:48:33 +03:00
|
|
|
tokio = { version = "^1", features = [ "parking_lot", "rt-multi-thread" ] }
|
|
|
|
tokio-util = "^0"
|
2023-10-23 11:07:08 +03:00
|
|
|
tracing = { version = "^0", features = [ "max_level_debug", "release_max_level_warn" ] }
|
2023-10-22 11:34:20 +03:00
|
|
|
unicode-width = "^0"
|
2024-01-01 17:07:06 +03:00
|
|
|
yazi-prebuild = "0.1.2"
|
2024-01-02 20:32:29 +03:00
|
|
|
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
libc = "^0"
|
|
|
|
uzers = "^0"
|