mirror of
https://github.com/sxyazi/yazi.git
synced 2026-05-13 08:16:40 +00:00
81 lines
2.9 KiB
TOML
81 lines
2.9 KiB
TOML
[package]
|
|
name = "yazi-fm"
|
|
version = "26.1.22"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
description = "Yazi file manager"
|
|
homepage = "https://yazi-rs.github.io"
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[profile.release-windows]
|
|
inherits = "release"
|
|
panic = "unwind"
|
|
|
|
[features]
|
|
default = [ "vendored-lua" ]
|
|
vendored-lua = [ "mlua/vendored" ]
|
|
|
|
[dependencies]
|
|
yazi-actor = { path = "../yazi-actor", version = "26.1.22" }
|
|
yazi-adapter = { path = "../yazi-adapter", version = "26.1.22" }
|
|
yazi-binding = { path = "../yazi-binding", version = "26.1.22" }
|
|
yazi-boot = { path = "../yazi-boot", version = "26.1.22" }
|
|
yazi-config = { path = "../yazi-config", version = "26.1.22" }
|
|
yazi-core = { path = "../yazi-core", version = "26.1.22" }
|
|
yazi-dds = { path = "../yazi-dds", version = "26.1.22" }
|
|
yazi-emulator = { path = "../yazi-emulator", version = "26.1.22" }
|
|
yazi-fs = { path = "../yazi-fs", version = "26.1.22" }
|
|
yazi-macro = { path = "../yazi-macro", version = "26.1.22" }
|
|
yazi-parser = { path = "../yazi-parser", version = "26.1.22" }
|
|
yazi-plugin = { path = "../yazi-plugin", version = "26.1.22" }
|
|
yazi-proxy = { path = "../yazi-proxy", version = "26.1.22" }
|
|
yazi-shared = { path = "../yazi-shared", version = "26.1.22" }
|
|
yazi-term = { path = "../yazi-term", version = "26.1.22" }
|
|
yazi-tty = { path = "../yazi-tty", version = "26.1.22" }
|
|
yazi-vfs = { path = "../yazi-vfs", version = "26.1.22" }
|
|
yazi-watcher = { path = "../yazi-watcher", version = "26.1.22" }
|
|
yazi-widgets = { path = "../yazi-widgets", version = "26.1.22" }
|
|
|
|
# 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.4"
|
|
tracing-subscriber = { version = "0.3.22", 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}"
|