2023-08-02 05:29:49 +03:00
|
|
|
[package]
|
2024-05-19 13:07:36 +03:00
|
|
|
name = "yazi-shared"
|
2024-09-04 18:16:18 +03:00
|
|
|
version = "0.3.3"
|
2024-05-19 13:07:36 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
|
|
description = "Yazi shared library"
|
|
|
|
homepage = "https://yazi-rs.github.io"
|
|
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
rust-version = "1.78.0"
|
2023-08-02 05:29:49 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-10-11 13:05:08 +03:00
|
|
|
yazi-macro = { path = "../yazi-macro", version = "0.3.3" }
|
|
|
|
|
|
|
|
# External dependencies
|
2024-08-03 05:45:46 +03:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
|
|
crossterm = { workspace = true }
|
|
|
|
dirs = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
parking_lot = { workspace = true }
|
2024-03-15 21:29:37 +03:00
|
|
|
percent-encoding = "2.3.1"
|
2024-08-03 05:45:46 +03:00
|
|
|
ratatui = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
shell-words = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2024-06-23 19:59:33 +03:00
|
|
|
|
2024-08-23 13:28:47 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
uzers = { workspace = true }
|
|
|
|
|
2024-06-23 19:59:33 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-08-01 09:36:16 +03:00
|
|
|
windows-sys = { version = "0.59.0", features = [ "Win32_Storage_FileSystem", "Win32_UI_Shell" ] }
|
2024-07-20 11:26:37 +03:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-09-03 20:48:18 +03:00
|
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|