mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
Some checks failed
Cachix / Publish Flake (push) Has been cancelled
Cachix / Publish Flake-1 (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
75 lines
3 KiB
TOML
75 lines
3 KiB
TOML
[package]
|
|
name = "yazi-fm"
|
|
description = "Yazi file manager"
|
|
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
|
|
|
|
[features]
|
|
default = [ "vendored-lua" ]
|
|
vendored-lua = [ "mlua/vendored" ]
|
|
|
|
[dependencies]
|
|
yazi-actor = { path = "../yazi-actor", version = "26.5.6" }
|
|
yazi-adapter = { path = "../yazi-adapter", version = "26.5.6" }
|
|
yazi-binding = { path = "../yazi-binding", version = "26.5.6" }
|
|
yazi-boot = { path = "../yazi-boot", version = "26.5.6" }
|
|
yazi-config = { path = "../yazi-config", version = "26.5.6" }
|
|
yazi-core = { path = "../yazi-core", version = "26.5.6" }
|
|
yazi-dds = { path = "../yazi-dds", version = "26.5.6" }
|
|
yazi-emulator = { path = "../yazi-emulator", version = "26.5.6" }
|
|
yazi-fs = { path = "../yazi-fs", version = "26.5.6" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.5.6" }
|
|
yazi-parser = { path = "../yazi-parser", version = "26.5.6" }
|
|
yazi-plugin = { path = "../yazi-plugin", version = "26.5.6" }
|
|
yazi-proxy = { path = "../yazi-proxy", version = "26.5.6" }
|
|
yazi-runner = { path = "../yazi-runner", version = "26.5.6" }
|
|
yazi-scheduler = { path = "../yazi-scheduler", version = "26.5.6" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.5.6" }
|
|
yazi-shim = { path = "../yazi-shim", version = "26.5.6" }
|
|
yazi-term = { path = "../yazi-term", version = "26.5.6" }
|
|
yazi-tty = { path = "../yazi-tty", version = "26.5.9" }
|
|
yazi-vfs = { path = "../yazi-vfs", version = "26.5.6" }
|
|
yazi-watcher = { path = "../yazi-watcher", version = "26.5.6" }
|
|
yazi-widgets = { path = "../yazi-widgets", version = "26.5.6" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
better-panic = "0.3.0"
|
|
crossterm = { workspace = true }
|
|
fdlimit = "0.3.0"
|
|
futures = { workspace = true }
|
|
mlua = { workspace = true }
|
|
paste = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
scopeguard = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-appender = "0.2.5"
|
|
tracing-subscriber = { version = "0.3.23", features = [ "env-filter" ] }
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = { workspace = true }
|
|
signal-hook-tokio = { version = "0.4.0", features = [ "futures-v0_3" ] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|
|
|
|
[target.'cfg(all(not(target_os = "macos"), not(target_os = "windows")))'.dependencies]
|
|
tikv-jemallocator = "0.6.1"
|
|
|
|
[[bin]]
|
|
name = "yazi"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{repo}/releases/download/v{version}/yazi-{target}{archive-suffix}"
|
|
bin-dir = "yazi-{target}/{bin}{binary-ext}"
|