2023-08-02 05:29:49 +03:00
|
|
|
[package]
|
2024-05-19 13:07:36 +03:00
|
|
|
name = "yazi-shared"
|
|
|
|
version = "0.2.5"
|
|
|
|
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-05-19 13:07:36 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-04-02 15:50:36 +03:00
|
|
|
bitflags = "2.5.0"
|
2024-03-15 21:29:37 +03:00
|
|
|
crossterm = "0.27.0"
|
|
|
|
dirs = "5.0.1"
|
2024-04-20 08:23:29 +03:00
|
|
|
filetime = "0.2.23"
|
2024-03-15 21:29:37 +03:00
|
|
|
futures = "0.3.30"
|
2024-05-25 17:56:08 +03:00
|
|
|
parking_lot = "0.12.3"
|
2024-03-15 21:29:37 +03:00
|
|
|
percent-encoding = "2.3.1"
|
2024-05-20 16:04:20 +03:00
|
|
|
ratatui = "0.26.3"
|
2024-04-02 15:50:36 +03:00
|
|
|
regex = "1.10.4"
|
2024-05-17 08:56:27 +03:00
|
|
|
serde = { version = "1.0.202", features = [ "derive" ] }
|
2024-05-19 13:07:36 +03:00
|
|
|
shell-words = "1.1.0"
|
2024-04-02 15:50:36 +03:00
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|
|
|
|
|
|
|
|
# Logging
|
|
|
|
tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_level_warn" ] }
|
2024-01-02 20:32:29 +03:00
|
|
|
|
|
|
|
[target."cfg(unix)".dependencies]
|
2024-05-19 13:07:36 +03:00
|
|
|
libc = "0.2.155"
|