2024-03-29 18:30:30 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-dds"
|
2024-04-23 11:35:17 +03:00
|
|
|
version = "0.2.5"
|
2024-03-29 18:30:30 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
|
|
description = "Yazi data distribution service"
|
|
|
|
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-29 18:30:30 +03:00
|
|
|
[dependencies]
|
2024-04-23 11:35:17 +03:00
|
|
|
yazi-boot = { path = "../yazi-boot", version = "0.2.5" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
2024-03-29 18:30:30 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-05-08 22:01:16 +03:00
|
|
|
anyhow = "1.0.83"
|
2024-04-24 13:49:46 +03:00
|
|
|
mlua = { version = "0.9.7", features = [ "lua54" ] }
|
2024-05-07 08:42:45 +03:00
|
|
|
parking_lot = "0.12.2"
|
2024-05-08 22:01:16 +03:00
|
|
|
serde = { version = "1.0.201", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0.117"
|
2024-04-10 20:09:29 +03:00
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|
|
|
|
tokio-stream = "0.1.15"
|
2024-05-08 22:01:16 +03:00
|
|
|
tokio-util = "0.7.11"
|
2024-03-29 18:30:30 +03:00
|
|
|
|
2024-04-05 12:11:40 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
2024-05-07 08:42:45 +03:00
|
|
|
uzers = "0.12.0"
|