zoxide/Cargo.toml

59 lines
1.7 KiB
TOML
Raw Normal View History

2020-03-05 13:09:32 +00:00
[package]
name = "zoxide"
2021-06-10 03:15:59 +00:00
version = "0.7.2"
2020-03-05 13:09:32 +00:00
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
2021-03-29 15:44:30 +00:00
edition = "2018"
2021-05-05 23:01:57 +00:00
description = "A smarter cd command for your terminal"
repository = "https://github.com/ajeetdsouza/zoxide"
2021-03-29 15:44:30 +00:00
license = "MIT"
2020-03-05 13:09:32 +00:00
keywords = ["cli"]
categories = ["command-line-utilities", "filesystem"]
[dependencies]
2020-10-18 09:22:13 +00:00
anyhow = "1.0.32"
2021-06-18 07:30:55 +00:00
askama = { version="0.10.3", default-features=false }
bincode = "1.3.1"
2020-10-18 09:22:13 +00:00
clap = "3.0.0-beta.2"
2020-11-10 19:11:26 +00:00
dirs-next = "2.0.0"
2020-10-18 09:22:13 +00:00
dunce = "1.0.1"
2020-09-15 21:20:58 +00:00
glob = "0.3.0"
ordered-float = "2.0.0"
2021-06-18 07:30:55 +00:00
serde = { version="1.0.116", features=["derive"] }
tempfile = "3.1.0"
2020-10-18 09:22:13 +00:00
[target.'cfg(windows)'.dependencies]
2021-06-18 07:30:55 +00:00
rand = { version="0.8.4", features=["getrandom", "small_rng"], default-features=false }
2021-03-29 15:44:30 +00:00
[dev-dependencies]
assert_cmd = "1.0.1"
rstest = "0.10.0"
2021-05-03 21:03:23 +00:00
[build-dependencies]
clap = "3.0.0-beta.2"
clap_generate = "3.0.0-beta.2"
2021-03-29 15:44:30 +00:00
[features]
default = []
# Adds tests for code generated by `zoxide init`.
# This requires the following external programs available in $PATH:
# - bash
# - black: <https://github.com/psf/black>
# - dash
2021-04-08 18:35:42 +00:00
# - elvish: <https://github.com/elves/elvish>
2021-03-29 15:44:30 +00:00
# - fish: <https://github.com/fish-shell/fish-shell>
# - mypy: <https://github.com/python/mypy>
# - nushell: <https://github.com/nushell/nushell>
# - powershell: <https://github.com/PowerShell/PowerShell>
# - pylint: <https://github.com/PyCQA/pylint>
# - shellcheck: <https://github.com/koalaman/shellcheck>
# - shfmt: <https://github.com/mvdan/sh>
# - xonsh: <https://github.com/xonsh/xonsh>
# - zsh: <https://github.com/zsh-users/zsh>
# Since most users are unlikely to have installed all of the above, these tests
# are disabled by default.
shell_tests = []
2020-03-05 13:09:32 +00:00
[profile.release]
codegen-units = 1
2020-07-03 18:07:36 +00:00
lto = true