yazi/yazi-config/Cargo.toml

25 lines
738 B
TOML
Raw Normal View History

[package]
2023-10-22 11:34:20 +03:00
name = "yazi-config"
2024-04-23 11:35:17 +03:00
version = "0.2.5"
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"
[dependencies]
2024-04-23 11:35:17 +03:00
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
# External dependencies
anyhow = "1.0.86"
arc-swap = "1.7.1"
crossterm = "0.27.0"
globset = "0.4.14"
indexmap = "2.2.6"
ratatui = "0.26.3"
2024-05-17 08:56:27 +03:00
serde = { version = "1.0.202", features = [ "derive" ] }
shell-words = "1.1.0"
2024-05-17 08:56:27 +03:00
toml = { version = "0.8.13", features = [ "preserve_order" ] }
validator = { version = "0.18.1", features = [ "derive" ] }