yazi/yazi-core/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

[package]
2023-10-22 11:34:20 +03:00
name = "yazi-core"
2024-03-08 22:07:20 +03:00
version = "0.2.4"
2023-10-22 11:34:20 +03:00
edition = "2021"
license = "MIT"
authors = [ "sxyazi <sxyazi@gmail.com>" ]
description = "Yazi core logic"
homepage = "https://yazi-rs.github.io"
repository = "https://github.com/sxyazi/yazi"
[dependencies]
2024-03-08 22:07:20 +03:00
yazi-adaptor = { path = "../yazi-adaptor", version = "0.2.4" }
yazi-boot = { path = "../yazi-boot", version = "0.2.4" }
yazi-config = { path = "../yazi-config", version = "0.2.4" }
yazi-dds = { path = "../yazi-dds", version = "0.2.4" }
2024-03-08 22:07:20 +03:00
yazi-plugin = { path = "../yazi-plugin", version = "0.2.4" }
yazi-proxy = { path = "../yazi-proxy", version = "0.2.4" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.2.4" }
yazi-shared = { path = "../yazi-shared", version = "0.2.4" }
# External dependencies
anyhow = "1.0.82"
base64 = "0.22.0"
bitflags = "2.5.0"
crossterm = "0.27.0"
futures = "0.3.30"
notify = { version = "6.1.1", default-features = false, features = [ "macos_fsevent" ] }
parking_lot = "0.12.1"
ratatui = "0.26.1"
regex = "1.10.4"
scopeguard = "1.2.0"
serde = "1.0.197"
tokio = { version = "1.37.0", features = [ "full" ] }
tokio-stream = "0.1.15"
tokio-util = "0.7.10"
unicode-width = "0.1.11"
2023-08-20 03:24:41 +03:00
# Logging
tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_level_warn" ] }
2023-12-19 17:43:03 +03:00
[target."cfg(unix)".dependencies]
libc = "0.2.153"
2023-12-19 17:43:03 +03:00
[target."cfg(windows)".dependencies]
clipboard-win = "5.3.0"