mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-21 23:01:05 +00:00
31 lines
1 KiB
TOML
31 lines
1 KiB
TOML
[package]
|
|
name = "yazi-config"
|
|
version = "25.4.8"
|
|
edition = "2024"
|
|
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-codegen = { path = "../yazi-codegen", version = "25.4.8" }
|
|
yazi-fs = { path = "../yazi-fs", version = "25.4.8" }
|
|
yazi-macro = { path = "../yazi-macro", version = "25.4.8" }
|
|
yazi-shared = { path = "../yazi-shared", version = "25.4.8" }
|
|
|
|
# External dependencies
|
|
anyhow = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
dirs = { workspace = true }
|
|
globset = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }
|