2023-08-02 05:29:49 +03:00
|
|
|
[package]
|
2023-10-22 11:34:20 +03:00
|
|
|
name = "yazi-config"
|
2024-08-01 09:36:16 +03:00
|
|
|
version = "0.3.0"
|
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-08-01 09:36:16 +03:00
|
|
|
yazi-shared = { path = "../yazi-shared", version = "0.3.0" }
|
2023-08-02 05:29:49 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-08-03 05:45:46 +03:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
arc-swap = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
|
|
crossterm = { workspace = true }
|
|
|
|
globset = { workspace = true }
|
|
|
|
indexmap = "2.3.0"
|
|
|
|
ratatui = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
toml = { version = "0.8.19", features = [ "preserve_order" ] }
|
2024-07-20 11:26:37 +03:00
|
|
|
validator = { version = "0.18.1", features = [ "derive" ] }
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-08-03 05:45:46 +03:00
|
|
|
crossterm = { workspace = true, features = [ "use-dev-tty" ] }
|