2023-07-08 14:46:43 +03:00
|
|
|
[package]
|
2023-07-10 19:25:57 +03:00
|
|
|
name = "yazi"
|
2023-07-25 06:31:34 +03:00
|
|
|
version = "0.1.2"
|
2023-07-08 14:46:43 +03:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-17 19:34:58 +03:00
|
|
|
ansi-to-tui = "^3"
|
|
|
|
anyhow = "^1"
|
|
|
|
async-channel = "^1"
|
|
|
|
base64 = "^0"
|
|
|
|
console-subscriber = "^0"
|
|
|
|
crossterm = { version = "^0", features = [ "event-stream" ] }
|
|
|
|
futures = "^0"
|
|
|
|
glob = "^0"
|
|
|
|
image = "^0"
|
|
|
|
indexmap = "^2"
|
|
|
|
libc = "^0"
|
|
|
|
md5 = "^0"
|
|
|
|
notify = { version = "^6", default-features = false, features = [ "macos_fsevent" ] }
|
|
|
|
once_cell = "^1"
|
|
|
|
parking_lot = "^0"
|
|
|
|
ratatui = "^0"
|
|
|
|
serde = { version = "^1", features = [ "derive" ] }
|
|
|
|
serde_json = "^1"
|
|
|
|
signal-hook-tokio = { version = "^0", features = [ "futures-v0_3" ] }
|
|
|
|
syntect = "^5"
|
2023-07-19 04:08:36 +03:00
|
|
|
tokio = { version = "^1", features = [ "parking_lot", "macros", "rt-multi-thread", "sync", "fs", "process", "io-std", "io-util" ] }
|
|
|
|
toml = { version = "^0", features = [ "preserve_order" ] }
|
2023-07-17 19:34:58 +03:00
|
|
|
tracing = "^0"
|
|
|
|
tracing-appender = "^0"
|
|
|
|
tracing-subscriber = "^0"
|
|
|
|
trash = "^3"
|
|
|
|
unicode-width = "^0"
|
|
|
|
xdg = "^2"
|
2023-07-08 14:46:43 +03:00
|
|
|
|
2023-07-19 14:02:30 +03:00
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|