yazi/yazi-core/Cargo.toml

42 lines
1.4 KiB
TOML
Raw Normal View History

[package]
2023-10-22 11:34:20 +03:00
name = "yazi-core"
version = "0.1.5"
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]
yazi-adaptor = { path = "../yazi-adaptor", version = "0.1.5" }
yazi-config = { path = "../yazi-config", version = "0.1.5" }
yazi-plugin = { path = "../yazi-plugin", version = "0.1.5" }
yazi-scheduler = { path = "../yazi-scheduler", version = "0.1.5" }
yazi-shared = { path = "../yazi-shared", version = "0.1.5" }
# External dependencies
anyhow = "^1"
2023-12-19 17:43:03 +03:00
base64 = "^0"
2023-11-09 04:07:12 +03:00
bitflags = "^2"
crossterm = "^0"
futures = "^0"
indexmap = "^2"
libc = "^0"
notify = { version = "^6", default-features = false, features = [ "macos_fsevent" ] }
parking_lot = "^0"
ratatui = "^0"
regex = "^1"
serde = "^1"
2024-01-01 17:07:06 +03:00
syntect = { version = "^5", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
tokio = { version = "^1", features = [ "parking_lot", "macros", "rt-multi-thread", "sync", "time", "fs", "process", "io-std", "io-util" ] }
tokio-stream = "^0"
tokio-util = "^0"
unicode-width = "^0"
2023-08-20 03:24:41 +03:00
# Logging
2023-10-23 11:07:08 +03:00
tracing = { version = "^0", features = [ "max_level_debug", "release_max_level_warn" ] }
2023-12-19 17:43:03 +03:00
[target."cfg(windows)".dependencies]
clipboard-win = "^4"