[package] name = "yazi-core" version = "0.3.3" edition = "2021" license = "MIT" authors = [ "sxyazi " ] description = "Yazi core logic" homepage = "https://yazi-rs.github.io" repository = "https://github.com/sxyazi/yazi" [dependencies] yazi-adapter = { path = "../yazi-adapter", version = "0.3.3" } yazi-boot = { path = "../yazi-boot", version = "0.3.3" } yazi-config = { path = "../yazi-config", version = "0.3.3" } yazi-dds = { path = "../yazi-dds", version = "0.3.3" } yazi-fs = { path = "../yazi-fs", version = "0.3.3" } yazi-plugin = { path = "../yazi-plugin", version = "0.3.3" } yazi-proxy = { path = "../yazi-proxy", version = "0.3.3" } yazi-scheduler = { path = "../yazi-scheduler", version = "0.3.3" } yazi-shared = { path = "../yazi-shared", version = "0.3.3" } # External dependencies anyhow = { workspace = true } bitflags = { workspace = true } crossterm = { workspace = true } dirs = { workspace = true } futures = { workspace = true } notify = { package = "notify-fork", version = "6.1.1", default-features = false, features = [ "macos_fsevent" ] } parking_lot = { workspace = true } ratatui = { workspace = true } scopeguard = { workspace = true } serde = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } tokio-util = { workspace = true } tracing = { workspace = true } unicode-width = { workspace = true } [target."cfg(unix)".dependencies] libc = { workspace = true } [target.'cfg(target_os = "macos")'.dependencies] crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }