2024-03-29 18:30:30 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-dds"
|
2024-08-15 17:36:57 +03:00
|
|
|
version = "0.3.1"
|
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-08-15 17:36:57 +03:00
|
|
|
yazi-boot = { path = "../yazi-boot", version = "0.3.1" }
|
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.3.1" }
|
2024-03-29 18:30:30 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-08-03 05:45:46 +03:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
mlua = { workspace = true }
|
|
|
|
parking_lot = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tokio-stream = { workspace = true }
|
|
|
|
tokio-util = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
2024-07-22 14:06:02 +03:00
|
|
|
|
2024-06-01 22:04:53 +03:00
|
|
|
[build-dependencies]
|
2024-07-12 13:32:01 +03:00
|
|
|
vergen-gitcl = { version = "1.0.0", features = [ "build" ] }
|
2024-06-01 22:04:53 +03:00
|
|
|
|
2024-04-05 12:11:40 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
2024-08-07 16:36:55 +03:00
|
|
|
uzers = "0.12.1"
|