mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 22:31:35 +03:00
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "yazi-config"
|
|
version = "0.2.0"
|
|
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.2.0" }
|
|
|
|
# External dependencies
|
|
anyhow = "^1"
|
|
arc-swap = "^1"
|
|
clap = { version = "^4", features = [ "derive" ] }
|
|
crossterm = "^0"
|
|
dirs = "^5"
|
|
futures = "^0"
|
|
glob = "^0"
|
|
indexmap = "^2"
|
|
md-5 = "^0"
|
|
ratatui = "^0"
|
|
serde = { version = "^1", features = [ "derive" ] }
|
|
shell-words = "^1"
|
|
toml = { version = "^0", features = [ "preserve_order" ] }
|
|
validator = { version = "^0", features = [ "derive" ] }
|
|
|
|
[build-dependencies]
|
|
clap = { version = "^4", features = [ "derive" ] }
|
|
clap_complete = "^4"
|
|
clap_complete_nushell = "^4"
|
|
clap_complete_fig = "^4"
|
|
vergen = { version = "^8", features = [ "build", "git", "gitcl" ] }
|