2023-08-02 05:29:49 +03:00
|
|
|
[package]
|
2023-10-22 11:34:20 +03:00
|
|
|
name = "yazi-config"
|
2024-02-07 06:18:23 +03:00
|
|
|
version = "0.2.3"
|
2023-10-22 11:34:20 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
|
|
description = "Yazi configuration file parser"
|
|
|
|
homepage = "https://yazi-rs.github.io"
|
|
|
|
repository = "https://github.com/sxyazi/yazi"
|
2023-08-02 05:29:49 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-07 06:18:23 +03:00
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.3" }
|
2023-08-02 05:29:49 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2023-08-12 12:48:18 +03:00
|
|
|
anyhow = "^1"
|
2023-12-26 14:48:33 +03:00
|
|
|
arc-swap = "^1"
|
2023-08-12 12:48:18 +03:00
|
|
|
crossterm = "^0"
|
|
|
|
futures = "^0"
|
|
|
|
glob = "^0"
|
2023-08-13 13:59:25 +03:00
|
|
|
indexmap = "^2"
|
|
|
|
md-5 = "^0"
|
2023-08-12 12:48:18 +03:00
|
|
|
ratatui = "^0"
|
|
|
|
serde = { version = "^1", features = [ "derive" ] }
|
|
|
|
shell-words = "^1"
|
|
|
|
toml = { version = "^0", features = [ "preserve_order" ] }
|
2023-08-15 02:29:21 +03:00
|
|
|
validator = { version = "^0", features = [ "derive" ] }
|