zoxide/Cargo.toml

111 lines
2.4 KiB
TOML
Raw Normal View History

2020-03-05 18:39:32 +05:30
[package]
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
2021-11-09 17:08:26 +05:30
categories = ["command-line-utilities", "filesystem"]
2021-05-06 04:31:57 +05:30
description = "A smarter cd command for your terminal"
2021-12-05 14:28:31 +05:30
edition = "2021"
2022-06-26 00:37:44 +05:30
homepage = "https://github.com/ajeetdsouza/zoxide"
2023-08-04 08:52:03 +05:30
keywords = ["cli", "filesystem", "shell", "tool", "utility"]
2021-11-09 17:08:26 +05:30
license = "MIT"
name = "zoxide"
2022-06-26 00:37:44 +05:30
readme = "README.md"
2021-11-09 17:08:26 +05:30
repository = "https://github.com/ajeetdsouza/zoxide"
2022-11-15 13:47:37 +05:30
rust-version = "1.65"
2023-08-04 07:57:38 +05:30
version = "0.9.2"
2020-03-05 18:39:32 +05:30
2021-10-12 01:35:24 +05:30
[badges]
maintenance = { status = "actively-developed" }
2023-05-06 03:16:13 +05:30
[dependencies]
2020-10-18 14:52:13 +05:30
anyhow = "1.0.32"
2023-05-06 03:16:13 +05:30
askama = { version = "0.12.0", default-features = false }
bincode = "1.3.1"
2023-06-11 01:07:07 +05:30
clap = { version = "4.3.0", features = ["derive"] }
color-print = "0.3.4"
2023-05-06 03:16:13 +05:30
dirs = "5.0.0"
2020-10-18 14:52:13 +05:30
dunce = "1.0.1"
2023-06-11 01:07:07 +05:30
fastrand = "2.0.0"
2020-09-16 02:50:58 +05:30
glob = "0.3.0"
2023-08-04 07:57:38 +05:30
ouroboros = "0.17.2"
2022-10-29 21:28:53 +05:30
serde = { version = "1.0.116", features = ["derive"] }
[target.'cfg(unix)'.dependencies]
2023-05-06 03:16:13 +05:30
nix = { version = "0.26.1", default-features = false, features = [
"fs",
"user",
] }
2022-04-26 20:09:17 +05:30
[target.'cfg(windows)'.dependencies]
2023-05-06 03:16:13 +05:30
which = "4.2.5"
2022-04-26 20:09:17 +05:30
2021-05-04 05:03:23 +08:00
[build-dependencies]
2023-06-11 01:07:07 +05:30
clap = { version = "4.3.0", features = ["derive"] }
clap_complete = "4.3.0"
clap_complete_fig = "4.3.0"
2023-05-06 03:16:13 +05:30
color-print = "0.3.4"
2021-05-04 05:03:23 +08:00
2021-10-12 01:35:24 +05:30
[dev-dependencies]
2023-05-06 03:16:13 +05:30
assert_cmd = "2.0.0"
2023-08-04 07:57:38 +05:30
rstest = { version = "0.18.0", default-features = false }
rstest_reuse = "0.6.0"
2023-05-06 03:16:13 +05:30
tempfile = "3.1.0"
2021-10-12 01:35:24 +05:30
2021-03-29 21:14:30 +05:30
[features]
default = []
nix-dev = []
2021-03-29 21:14:30 +05:30
2020-03-05 18:39:32 +05:30
[profile.release]
codegen-units = 1
2022-04-25 14:45:46 +05:30
debug = 0
2020-07-03 23:37:36 +05:30
lto = true
2022-02-25 09:49:45 +05:30
strip = true
2022-06-26 00:37:44 +05:30
[package.metadata.deb]
assets = [
[
"target/release/zoxide",
2022-06-26 00:52:42 +05:30
"usr/bin/",
2022-06-26 00:37:44 +05:30
"755",
],
[
"contrib/completions/zoxide.bash",
"usr/share/bash-completion/completions/zoxide",
"644",
],
[
"contrib/completions/zoxide.fish",
2022-06-26 00:52:42 +05:30
"usr/share/fish/vendor_completions.d/",
2022-06-26 00:37:44 +05:30
"664",
],
[
"contrib/completions/_zoxide",
"usr/share/zsh/vendor-completions/",
"644",
],
[
"man/man1/*",
"usr/share/man/man1/",
"644",
],
[
"README.md",
"usr/share/doc/zoxide/",
"644",
],
[
"CHANGELOG.md",
"usr/share/doc/zoxide/",
"644",
],
[
"LICENSE",
"usr/share/doc/zoxide/",
"644",
],
]
extended-description = """\
zoxide is a smarter cd command, inspired by z and autojump. It remembers which \
directories you use most frequently, so you can "jump" to them in just a few \
keystrokes."""
priority = "optional"
2022-06-26 00:52:42 +05:30
section = "utils"