mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-19 06:41:35 +03:00
26 lines
656 B
TOML
26 lines
656 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
adaptor = { path = "../adaptor" }
|
|
config = { path = "../config" }
|
|
core = { path = "../core" }
|
|
shared = { path = "../shared" }
|
|
|
|
# External dependencies
|
|
ansi-to-tui = "^3"
|
|
anyhow = "^1"
|
|
crossterm = { version = "^0", features = [ "event-stream" ] }
|
|
futures = "^0"
|
|
libc = "^0"
|
|
ratatui = "^0"
|
|
signal-hook-tokio = { version = "^0", features = [ "futures-v0_3" ] }
|
|
tokio = { version = "^1", features = [ "parking_lot" ] }
|
|
|
|
# Logging
|
|
tracing = "^0"
|
|
tracing-appender = "^0"
|
|
tracing-subscriber = "^0"
|