mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 14:21:32 +03:00
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "yazi-scheduler"
|
|
version = "0.2.4"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
description = "Yazi task scheduler"
|
|
homepage = "https://yazi-rs.github.io"
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
[dependencies]
|
|
yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.4" }
|
|
yazi-config = { path = "../yazi-config", version = "0.2.4" }
|
|
yazi-plugin = { path = "../yazi-plugin", version = "0.2.4" }
|
|
yazi-proxy = { path = "../yazi-proxy", version = "0.2.4" }
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.4" }
|
|
|
|
# External dependencies
|
|
anyhow = "1.0.81"
|
|
async-priority-channel = "0.2.0"
|
|
base64 = "0.22.0"
|
|
crossterm = "0.27.0"
|
|
futures = "0.3.30"
|
|
parking_lot = "0.12.1"
|
|
regex = "1.10.3"
|
|
tokio = { version = "1.36.0", features = [ "parking_lot", "rt-multi-thread" ] }
|
|
tokio-stream = "0.1.15"
|
|
|
|
# Logging
|
|
tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_level_warn" ] }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = "0.2.153"
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
trash = "4.0.0"
|