mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
Some checks failed
Cachix / Publish Flake (push) Has been cancelled
Check / clippy (push) Has been cancelled
Check / rustfmt (push) Has been cancelled
Check / stylua (push) Has been cancelled
Draft / build-unix (gcc-aarch64-linux-gnu, ubuntu-latest, aarch64-unknown-linux-gnu) (push) Has been cancelled
Draft / build-unix (gcc-i686-linux-gnu, ubuntu-latest, i686-unknown-linux-gnu) (push) Has been cancelled
Draft / build-unix (gcc-riscv64-linux-gnu, ubuntu-latest, riscv64gc-unknown-linux-gnu) (push) Has been cancelled
Draft / build-unix (gcc-sparc64-linux-gnu, ubuntu-latest, sparc64-unknown-linux-gnu) (push) Has been cancelled
Draft / build-unix (macos-latest, aarch64-apple-darwin) (push) Has been cancelled
Draft / build-unix (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
Draft / build-unix (ubuntu-latest, x86_64-unknown-linux-gnu) (push) Has been cancelled
Draft / build-windows (windows-latest, aarch64-pc-windows-msvc) (push) Has been cancelled
Draft / build-windows (windows-latest, x86_64-pc-windows-msvc) (push) Has been cancelled
Draft / build-musl (aarch64-unknown-linux-musl) (push) Has been cancelled
Draft / build-musl (x86_64-unknown-linux-musl) (push) Has been cancelled
Draft / build-snap (amd64, ubuntu-latest) (push) Has been cancelled
Draft / build-snap (arm64, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (macos-latest) (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
Test / test (windows-latest) (push) Has been cancelled
Draft / snap (push) Has been cancelled
Draft / draft (push) Has been cancelled
Draft / nightly (push) Has been cancelled
64 lines
2.3 KiB
TOML
64 lines
2.3 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
|
|
|
|
[build-dependencies]
|
|
cfg_aliases = "0.2.2"
|
|
|
|
[dependencies]
|
|
yazi-binding = { path = "../yazi-binding", version = "26.5.6" }
|
|
yazi-ffi = { path = "../yazi-ffi", version = "26.5.6" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.5.6" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.5.6" }
|
|
yazi-shim = { path = "../yazi-shim", version = "26.5.6" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
arc-swap = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
data-encoding = { workspace = true }
|
|
dirs = { workspace = true }
|
|
either = { workspace = true }
|
|
foldhash = { workspace = true }
|
|
hashbrown = { workspace = true }
|
|
inventory = { workspace = true }
|
|
libc = { workspace = true }
|
|
mlua = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
strum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
typed-path = { workspace = true }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
uzers = { workspace = true }
|
|
|
|
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android"), not(target_os = "ios")))'.dependencies]
|
|
percent-encoding = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.62.2", features = [ "Win32_Foundation", "Win32_Storage_EnhancedStorage", "Win32_System_Com_StructuredStorage", "Win32_System_SystemServices", "Win32_System_Variant", "Win32_UI_Shell_PropertiesSystem" ] }
|
|
windows-sys = { version = "0.61.2", features = [ "Win32_Storage_FileSystem" ] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation-sys = { workspace = true }
|
|
ds_parser = "0.2.1"
|
|
objc2 = { workspace = true }
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
trash = "5.2.6"
|