mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[package]
|
|
name = "yazi-fs"
|
|
description = "Yazi 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-ffi = { path = "../yazi-ffi", version = "26.2.2" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.2.2" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.2.2" }
|
|
yazi-shim = { path = "../yazi-shim", version = "26.2.2" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
arc-swap = "1.8.2"
|
|
bitflags = { workspace = true }
|
|
dirs = { workspace = true }
|
|
either = { workspace = true }
|
|
foldhash = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
serde = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
typed-path = { workspace = true }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = { workspace = true }
|
|
uzers = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { version = "0.61.2", features = [ "Win32_Storage_FileSystem" ] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation-sys = { workspace = true }
|
|
objc2 = { workspace = true }
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
trash = "5.2.5"
|