2024-03-02 15:33:34 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-proxy"
|
2024-04-23 11:35:17 +03:00
|
|
|
version = "0.2.5"
|
2024-03-02 15:33:34 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
|
|
description = "Yazi event proxy"
|
|
|
|
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" ]
|
|
|
|
|
2024-03-02 15:33:34 +03:00
|
|
|
[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" }
|
2024-03-02 15:33:34 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-04-13 05:33:42 +03:00
|
|
|
anyhow = "1.0.82"
|
2024-04-24 13:49:46 +03:00
|
|
|
mlua = { version = "0.9.7", features = [ "lua54" ] }
|
2024-04-02 15:50:36 +03:00
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|