yazi/yazi-fm/Cargo.toml

45 lines
1.5 KiB
TOML
Raw Normal View History

2023-10-22 11:34:20 +03:00
[package]
name = "yazi-fm"
2024-02-07 06:18:23 +03:00
version = "0.2.3"
2023-10-22 11:34:20 +03:00
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]
2024-02-07 06:18:23 +03:00
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" }
2023-10-22 11:34:20 +03:00
# External dependencies
anyhow = "^1"
better-panic = "^0"
2023-10-22 11:34:20 +03:00
crossterm = { version = "^0", features = [ "event-stream" ] }
fdlimit = "^0"
2023-10-22 11:34:20 +03:00
futures = "^0"
2023-12-27 22:32:39 +03:00
mlua = { version = "^0", features = [ "lua54", "vendored" ] }
2023-10-22 11:34:20 +03:00
ratatui = "^0"
syntect = { version = "^5", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
2023-10-22 11:34:20 +03:00
tokio = { version = "^1", features = [ "parking_lot" ] }
tokio-util = "^0"
2023-10-22 11:34:20 +03:00
unicode-width = "^0"
# Logging
2023-10-23 11:07:08 +03:00
tracing = { version = "^0", features = [ "max_level_debug", "release_max_level_warn" ] }
2023-10-22 11:34:20 +03:00
tracing-appender = "^0"
tracing-subscriber = "^0"
[target."cfg(unix)".dependencies]
libc = "^0"
signal-hook-tokio = { version = "^0", features = [ "futures-v0_3" ] }
2024-02-07 06:18:23 +03:00
tikv-jemallocator = "^0"
2023-10-22 11:34:20 +03:00
[[bin]]
name = "yazi"
path = "src/main.rs"