mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
32 lines
1.2 KiB
TOML
32 lines
1.2 KiB
TOML
[package]
|
|
name = "yazi-watcher"
|
|
description = "Yazi file watcher"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
yazi-adapter = { path = "../yazi-adapter", version = "26.2.2" }
|
|
yazi-dds = { path = "../yazi-dds", version = "26.2.2" }
|
|
yazi-fs = { path = "../yazi-fs", version = "26.2.2" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.2.2" }
|
|
yazi-proxy = { path = "../yazi-proxy", version = "26.2.2" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.2.2" }
|
|
yazi-vfs = { path = "../yazi-vfs", version = "26.2.2" }
|
|
|
|
# External dependencies
|
|
futures = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
notify = { version = "8.2.0", default-features = false, features = [ "macos_fsevent" ] }
|
|
parking_lot = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|