mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 14:21:32 +03:00
34 lines
964 B
TOML
34 lines
964 B
TOML
[package]
|
|
name = "yazi-dds"
|
|
version = "0.2.5"
|
|
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"
|
|
|
|
[features]
|
|
default = [ "vendored-lua" ]
|
|
vendored-lua = [ "mlua/vendored" ]
|
|
|
|
[dependencies]
|
|
yazi-boot = { path = "../yazi-boot", version = "0.2.5" }
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
|
|
|
# External dependencies
|
|
anyhow = "1.0.86"
|
|
mlua = { version = "0.9.9", features = [ "lua54" ] }
|
|
parking_lot = "0.12.3"
|
|
serde = { version = "1.0.204", features = [ "derive" ] }
|
|
serde_json = "1.0.120"
|
|
tokio = { version = "1.38.0", features = [ "full" ] }
|
|
tokio-stream = "0.1.15"
|
|
tokio-util = "0.7.11"
|
|
|
|
[build-dependencies]
|
|
vergen-gitcl = { version = "1.0.0", features = [ "build" ] }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
uzers = "0.12.0"
|