mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 14:21:32 +03:00
29 lines
956 B
TOML
29 lines
956 B
TOML
[package]
|
|
name = "yazi-config"
|
|
version = "0.3.3"
|
|
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]
|
|
yazi-shared = { path = "../yazi-shared", version = "0.3.3" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
arc-swap = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
globset = { workspace = true }
|
|
indexmap = { version = "2.6.0", features = [ "serde" ] }
|
|
ratatui = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = { version = "0.8.19", features = [ "preserve_order" ] }
|
|
validator = { version = "0.18.1", features = [ "derive" ] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|