2024-04-15 10:42:44 +03:00
|
|
|
[package]
|
|
|
|
name = "yazi-cli"
|
2024-04-23 11:35:17 +03:00
|
|
|
version = "0.2.5"
|
2024-04-15 10:42:44 +03:00
|
|
|
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]
|
2024-04-23 11:35:17 +03:00
|
|
|
yazi-dds = { path = "../yazi-dds", version = "0.2.5" }
|
2024-04-15 10:42:44 +03:00
|
|
|
|
|
|
|
# External dependencies
|
2024-04-21 04:25:38 +03:00
|
|
|
anyhow = "1.0.82"
|
|
|
|
clap = { version = "4.5.4", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0.116"
|
|
|
|
tokio = { version = "1.37.0", features = [ "full" ] }
|
2024-04-15 10:42:44 +03:00
|
|
|
|
2024-04-16 07:40:14 +03:00
|
|
|
[build-dependencies]
|
2024-04-21 04:25:38 +03:00
|
|
|
anyhow = "1.0.82"
|
2024-04-16 07:40:14 +03:00
|
|
|
clap = { version = "4.5.4", features = [ "derive" ] }
|
|
|
|
clap_complete = "4.5.2"
|
|
|
|
clap_complete_fig = "4.5.0"
|
2024-04-21 04:25:38 +03:00
|
|
|
clap_complete_nushell = "4.5.1"
|
|
|
|
serde_json = "1.0.116"
|
2024-04-16 07:40:14 +03:00
|
|
|
|
2024-04-15 10:42:44 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "ya"
|
|
|
|
path = "src/main.rs"
|