mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-01 10:17:47 +03:00
47 lines
1.6 KiB
TOML
47 lines
1.6 KiB
TOML
[package]
|
|
name = "yazi-fm"
|
|
version = "0.2.3"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
description = "Yazi File Manager"
|
|
homepage = "https://yazi-rs.github.io"
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
[dependencies]
|
|
yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.3" }
|
|
yazi-config = { path = "../yazi-config", version = "0.2.3" }
|
|
yazi-core = { path = "../yazi-core", version = "0.2.3" }
|
|
yazi-plugin = { path = "../yazi-plugin", version = "0.2.3" }
|
|
yazi-scheduler = { path = "../yazi-scheduler", version = "0.2.3" }
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.3" }
|
|
|
|
# External dependencies
|
|
anyhow = "^1"
|
|
better-panic = "^0"
|
|
crossterm = { version = "^0", features = [ "event-stream" ] }
|
|
fdlimit = "^0"
|
|
futures = "^0"
|
|
mlua = { version = "^0", features = [ "lua54", "vendored" ] }
|
|
ratatui = "^0"
|
|
syntect = { version = "^5", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
|
|
tokio = { version = "^1", features = [ "parking_lot" ] }
|
|
tokio-util = "^0"
|
|
unicode-width = "^0"
|
|
|
|
# Logging
|
|
tracing = { version = "^0", features = [ "max_level_debug", "release_max_level_warn" ] }
|
|
tracing-appender = "^0"
|
|
tracing-subscriber = "^0"
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = "^0"
|
|
signal-hook-tokio = { version = "^0", features = [ "futures-v0_3" ] }
|
|
|
|
[target.'cfg(all(not(target_os = "macos"), not(target_os = "windows")))'.dependencies]
|
|
tikv-jemallocator = "^0"
|
|
|
|
[[bin]]
|
|
name = "yazi"
|
|
path = "src/main.rs"
|