2023-08-02 05:29:49 +03:00
|
|
|
[package]
|
|
|
|
name = "core"
|
2023-10-16 05:40:09 +03:00
|
|
|
version = "0.1.5"
|
2023-08-02 05:29:49 +03:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
adaptor = { path = "../adaptor" }
|
|
|
|
config = { path = "../config" }
|
|
|
|
shared = { path = "../shared" }
|
|
|
|
|
|
|
|
# External dependencies
|
|
|
|
anyhow = "^1"
|
|
|
|
async-channel = "^1"
|
|
|
|
crossterm = "^0"
|
|
|
|
futures = "^0"
|
|
|
|
indexmap = "^2"
|
2023-09-07 11:08:51 +03:00
|
|
|
libc = "^0"
|
2023-08-02 05:29:49 +03:00
|
|
|
notify = { version = "^6", default-features = false, features = [ "macos_fsevent" ] }
|
|
|
|
parking_lot = "^0"
|
|
|
|
ratatui = "^0"
|
2023-08-26 12:28:43 +03:00
|
|
|
regex = "^1"
|
2023-08-02 05:29:49 +03:00
|
|
|
serde = "^1"
|
|
|
|
serde_json = "^1"
|
|
|
|
syntect = "^5"
|
2023-08-03 13:55:40 +03:00
|
|
|
tokio = { version = "^1", features = [ "parking_lot", "macros", "rt-multi-thread", "sync", "time", "fs", "process", "io-std", "io-util" ] }
|
2023-08-23 05:55:39 +03:00
|
|
|
tokio-stream = "^0"
|
2023-10-09 14:40:05 +03:00
|
|
|
trash = "^3"
|
2023-08-02 05:29:49 +03:00
|
|
|
unicode-width = "^0"
|
2023-08-05 11:49:23 +03:00
|
|
|
yazi-prebuild = "^0"
|
2023-08-20 03:24:41 +03:00
|
|
|
|
2023-10-10 17:57:36 +03:00
|
|
|
# Logging
|
|
|
|
tracing = "^0"
|
|
|
|
|
2023-10-16 04:04:20 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
2023-08-20 03:24:41 +03:00
|
|
|
clipboard-win = "^4"
|