zoxide/Cargo.toml

34 lines
771 B
TOML
Raw Permalink Normal View History

2020-03-05 18:39:32 +05:30
[package]
name = "zoxide"
2020-10-31 00:22:09 +05:30
version = "0.5.0"
2020-03-05 18:39:32 +05:30
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
2020-05-03 18:11:35 +05:30
description = "A faster way to navigate your filesystem"
2020-03-05 18:39:32 +05:30
repository = "https://github.com/ajeetdsouza/zoxide/"
edition = "2018"
keywords = ["cli"]
categories = ["command-line-utilities", "filesystem"]
license = "MIT"
[dependencies]
2020-10-18 14:52:13 +05:30
anyhow = "1.0.32"
askama = { version = "0.10.3", default-features = false }
bincode = "1.3.1"
2020-10-18 14:52:13 +05:30
clap = "3.0.0-beta.2"
dirs-next = "1.0.2"
dunce = "1.0.1"
2020-09-16 02:50:58 +05:30
glob = "0.3.0"
2020-10-18 14:52:13 +05:30
once_cell = "1.4.1"
ordered-float = "2.0.0"
serde = { version = "1.0.116", features = ["derive"] }
tempfile = "3.1.0"
2020-10-18 14:52:13 +05:30
[target.'cfg(windows)'.dependencies]
rand = "0.7.3"
2020-10-27 01:25:02 +05:30
[target.'cfg(unix)'.dev-dependencies]
assert_cmd = "1.0.1"
2020-03-05 18:39:32 +05:30
[profile.release]
codegen-units = 1
2020-07-03 23:37:36 +05:30
lto = true