mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "yazi-vfs"
|
|
description = "Yazi virtual file system"
|
|
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-config = { path = "../yazi-config", version = "26.2.2" }
|
|
yazi-fs = { path = "../yazi-fs", version = "26.2.2" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.2.2" }
|
|
yazi-sftp = { path = "../yazi-sftp", version = "26.2.2" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.2.2" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
deadpool = { version = "0.13.0", default-features = false, features = [ "managed", "rt_tokio_1" ] }
|
|
either = { workspace = true }
|
|
futures = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
russh = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
typed-path = { workspace = true }
|