zoxide/Cargo.toml

111 lines
2.4 KiB
TOML
Raw Normal View History

2020-03-05 13:09:32 +00:00
[package]
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
2021-11-09 11:38:26 +00:00
categories = ["command-line-utilities", "filesystem"]
2021-05-05 23:01:57 +00:00
description = "A smarter cd command for your terminal"
2021-12-05 08:58:31 +00:00
edition = "2021"
2022-06-25 19:07:44 +00:00
homepage = "https://github.com/ajeetdsouza/zoxide"
2023-08-04 03:22:03 +00:00
keywords = ["cli", "filesystem", "shell", "tool", "utility"]
2021-11-09 11:38:26 +00:00
license = "MIT"
name = "zoxide"
2022-06-25 19:07:44 +00:00
readme = "README.md"
2021-11-09 11:38:26 +00:00
repository = "https://github.com/ajeetdsouza/zoxide"
2024-02-12 21:43:22 +00:00
rust-version = "1.74.1"
2024-02-20 23:06:08 +00:00
version = "0.9.4"
2020-03-05 13:09:32 +00:00
2021-10-11 20:05:24 +00:00
[badges]
maintenance = { status = "actively-developed" }
2023-05-05 21:46:13 +00:00
[dependencies]
2020-10-18 09:22:13 +00:00
anyhow = "1.0.32"
2023-05-05 21:46:13 +00:00
askama = { version = "0.12.0", default-features = false }
bincode = "1.3.1"
2023-06-10 19:37:07 +00:00
clap = { version = "4.3.0", features = ["derive"] }
color-print = "0.3.4"
2023-05-05 21:46:13 +00:00
dirs = "5.0.0"
2020-10-18 09:22:13 +00:00
dunce = "1.0.1"
2023-06-10 19:37:07 +00:00
fastrand = "2.0.0"
2020-09-15 21:20:58 +00:00
glob = "0.3.0"
2024-02-12 21:43:22 +00:00
ouroboros = "0.18.3"
2022-10-29 15:58:53 +00:00
serde = { version = "1.0.116", features = ["derive"] }
[target.'cfg(unix)'.dependencies]
2024-02-12 21:43:22 +00:00
nix = { version = "0.27.1", default-features = false, features = [
2023-05-05 21:46:13 +00:00
"fs",
"user",
] }
2022-04-26 14:39:17 +00:00
[target.'cfg(windows)'.dependencies]
2024-02-12 21:43:22 +00:00
which = "6.0.0"
2022-04-26 14:39:17 +00:00
2021-05-03 21:03:23 +00:00
[build-dependencies]
2023-06-10 19:37:07 +00:00
clap = { version = "4.3.0", features = ["derive"] }
clap_complete = "4.3.0"
clap_complete_fig = "4.3.0"
2023-05-05 21:46:13 +00:00
color-print = "0.3.4"
2021-05-03 21:03:23 +00:00
2021-10-11 20:05:24 +00:00
[dev-dependencies]
2023-05-05 21:46:13 +00:00
assert_cmd = "2.0.0"
2023-08-04 02:27:38 +00:00
rstest = { version = "0.18.0", default-features = false }
rstest_reuse = "0.6.0"
2023-05-05 21:46:13 +00:00
tempfile = "3.1.0"
2021-10-11 20:05:24 +00:00
2021-03-29 15:44:30 +00:00
[features]
default = []
nix-dev = []
2021-03-29 15:44:30 +00:00
2020-03-05 13:09:32 +00:00
[profile.release]
codegen-units = 1
2022-04-25 09:15:46 +00:00
debug = 0
2020-07-03 18:07:36 +00:00
lto = true
2022-02-25 04:19:45 +00:00
strip = true
2022-06-25 19:07:44 +00:00
[package.metadata.deb]
assets = [
[
"target/release/zoxide",
2022-06-25 19:22:42 +00:00
"usr/bin/",
2022-06-25 19:07:44 +00:00
"755",
],
[
"contrib/completions/zoxide.bash",
"usr/share/bash-completion/completions/zoxide",
"644",
],
[
"contrib/completions/zoxide.fish",
2022-06-25 19:22:42 +00:00
"usr/share/fish/vendor_completions.d/",
2022-06-25 19:07:44 +00:00
"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-25 19:22:42 +00:00
section = "utils"