zoxide/Cargo.toml

114 lines
2.3 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"
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-07-01 09:33:30 +00:00
rust-version = "1.62"
2022-09-02 08:29:24 +00:00
version = "0.8.3"
2020-03-05 13:09:32 +00:00
2021-10-11 20:05:24 +00:00
[badges]
maintenance = { status = "actively-developed" }
[workspace]
members = ["xtask/"]
2020-03-05 13:09:32 +00:00
[dependencies]
2020-10-18 09:22:13 +00:00
anyhow = "1.0.32"
askama = { version = "0.11.0", default-features = false }
bincode = "1.3.1"
clap = { version = "4.0.0", features = ["derive"] }
2021-11-30 21:48:33 +00:00
dirs = "4.0.0"
2020-10-18 09:22:13 +00:00
dunce = "1.0.1"
fastrand = "1.7.0"
2020-09-15 21:20:58 +00:00
glob = "0.3.0"
serde = { version = "1.0.116", features = ["derive"] }
2020-10-18 09:22:13 +00:00
[target.'cfg(unix)'.dependencies]
2022-04-25 09:15:46 +00:00
nix = { version = "0.24.1", default-features = false, features = [
"fs",
"user",
] }
2022-04-26 14:39:17 +00:00
[target.'cfg(windows)'.dependencies]
which = "4.2.5"
2021-05-03 21:03:23 +00:00
[build-dependencies]
clap = { version = "4.0.0", features = ["derive"] }
clap_complete = "4.0.0"
clap_complete_fig = "4.0.0"
2021-05-03 21:03:23 +00:00
2021-10-11 20:05:24 +00:00
[dev-dependencies]
assert_cmd = "2.0.0"
rstest = { version = "0.15.0", default-features = false }
rstest_reuse = "0.4.0"
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
2022-04-25 09:15:46 +00:00
[profile.dev]
debug = 0
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"