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"
|
2020-03-05 13:09:32 +00:00
|
|
|
keywords = ["cli"]
|
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"
|
2022-11-15 08:17:37 +00:00
|
|
|
rust-version = "1.65"
|
2023-01-07 23:05:54 +00:00
|
|
|
version = "0.9.0"
|
2020-03-05 13:09:32 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = ["xtask/"]
|
|
|
|
|
2022-10-29 15:58:53 +00:00
|
|
|
[workspace.dependencies]
|
2020-10-18 09:22:13 +00:00
|
|
|
anyhow = "1.0.32"
|
2021-12-20 15:59:11 +00:00
|
|
|
askama = { version = "0.11.0", default-features = false }
|
2022-10-29 15:58:53 +00:00
|
|
|
assert_cmd = "2.0.0"
|
2020-10-26 17:55:04 +00:00
|
|
|
bincode = "1.3.1"
|
2022-10-29 14:16:10 +00:00
|
|
|
clap = { version = "4.0.0", features = ["derive"] }
|
2022-10-29 15:58:53 +00:00
|
|
|
clap_complete = "4.0.0"
|
|
|
|
clap_complete_fig = "4.0.0"
|
2021-11-30 21:48:33 +00:00
|
|
|
dirs = "4.0.0"
|
2020-10-18 09:22:13 +00:00
|
|
|
dunce = "1.0.1"
|
2022-03-09 08:13:52 +00:00
|
|
|
fastrand = "1.7.0"
|
2020-09-15 21:20:58 +00:00
|
|
|
glob = "0.3.0"
|
2022-10-29 15:58:53 +00:00
|
|
|
ignore = "0.4.18"
|
2023-01-07 17:28:10 +00:00
|
|
|
nix = { version = "0.26.1", default-features = false, features = [
|
2022-04-25 09:15:46 +00:00
|
|
|
"fs",
|
|
|
|
"user",
|
|
|
|
] }
|
2023-01-07 17:28:10 +00:00
|
|
|
ouroboros = "0.15.5"
|
|
|
|
rstest = { version = "0.16.0", default-features = false }
|
2022-10-29 15:58:53 +00:00
|
|
|
rstest_reuse = "0.4.0"
|
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
|
|
shell-words = "1.0.0"
|
|
|
|
tempfile = "3.1.0"
|
|
|
|
which = "4.2.5"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
|
|
|
askama.workspace = true
|
|
|
|
bincode.workspace = true
|
|
|
|
clap.workspace = true
|
|
|
|
dirs.workspace = true
|
|
|
|
dunce.workspace = true
|
|
|
|
fastrand.workspace = true
|
|
|
|
glob.workspace = true
|
2023-01-07 17:28:10 +00:00
|
|
|
ouroboros.workspace = true
|
2022-10-29 15:58:53 +00:00
|
|
|
serde.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
nix.workspace = true
|
2020-10-26 17:55:04 +00:00
|
|
|
|
2022-04-26 14:39:17 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-10-29 15:58:53 +00:00
|
|
|
which.workspace = true
|
2022-04-26 14:39:17 +00:00
|
|
|
|
2021-05-03 21:03:23 +00:00
|
|
|
[build-dependencies]
|
2022-10-29 15:58:53 +00:00
|
|
|
clap.workspace = true
|
|
|
|
clap_complete.workspace = true
|
|
|
|
clap_complete_fig.workspace = true
|
2021-05-03 21:03:23 +00:00
|
|
|
|
2021-10-11 20:05:24 +00:00
|
|
|
[dev-dependencies]
|
2022-10-29 15:58:53 +00:00
|
|
|
assert_cmd.workspace = true
|
|
|
|
rstest.workspace = true
|
|
|
|
rstest_reuse.workspace = true
|
|
|
|
tempfile.workspace = true
|
2021-10-11 20:05:24 +00:00
|
|
|
|
2021-03-29 15:44:30 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2022-03-09 08:13:52 +00:00
|
|
|
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"
|