mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-26 10:13:38 +03:00
f1cf136df4
Co-authored-by: sxyazi <sxyazi@gmail.com>
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "yazi-cli"
|
|
version = "0.2.5"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = [ "sxyazi <sxyazi@gmail.com>" ]
|
|
description = "Yazi command-line interface"
|
|
homepage = "https://yazi-rs.github.io"
|
|
repository = "https://github.com/sxyazi/yazi"
|
|
|
|
[dependencies]
|
|
yazi-dds = { path = "../yazi-dds", version = "0.2.5" }
|
|
yazi-shared = { path = "../yazi-shared", version = "0.2.5" }
|
|
|
|
# External dependencies
|
|
anyhow = "1.0.86"
|
|
clap = { version = "4.5.7", features = [ "derive" ] }
|
|
crossterm = "0.27.0"
|
|
md-5 = "0.10.6"
|
|
serde_json = "1.0.117"
|
|
tokio = { version = "1.38.0", features = [ "full" ] }
|
|
toml_edit = "0.22.14"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.86"
|
|
clap = { version = "4.5.7", features = [ "derive" ] }
|
|
clap_complete = "4.5.6"
|
|
clap_complete_fig = "4.5.1"
|
|
clap_complete_nushell = "4.5.2"
|
|
serde_json = "1.0.117"
|
|
vergen = { version = "8.3.1", features = [ "build", "git", "gitcl" ] }
|
|
|
|
[[bin]]
|
|
name = "ya"
|
|
path = "src/main.rs"
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/v{ version }/yazi-{ target }{ archive-suffix }"
|
|
bin-dir = "yazi-{ target }/{ bin }{ binary-ext }"
|