mirror of
https://github.com/sxyazi/yazi.git
synced 2024-11-24 09:53:12 +03:00
bba32ed0b2
Co-authored-by: sxyazi <sxyazi@gmail.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 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-boot = { path = "../yazi-boot", version = "0.2.5" }
|
|
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.9", features = [ "derive" ] }
|
|
crossterm = "0.27.0"
|
|
md-5 = "0.10.6"
|
|
serde_json = "1.0.120"
|
|
tokio = { version = "1.38.1", features = [ "full" ] }
|
|
toml_edit = "0.22.16"
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.86"
|
|
clap = { version = "4.5.9", features = [ "derive" ] }
|
|
clap_complete = "4.5.8"
|
|
clap_complete_fig = "4.5.1"
|
|
clap_complete_nushell = "4.5.2"
|
|
serde_json = "1.0.120"
|
|
vergen-gitcl = { version = "1.0.0", features = [ "build" ] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { version = "0.27.0", features = [ "use-dev-tty" ] }
|
|
|
|
[[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 }"
|