zoxide/Cargo.toml

35 lines
791 B
TOML
Raw Normal View History

2020-03-05 13:09:32 +00:00
[package]
name = "zoxide"
2020-10-30 18:52:09 +00:00
version = "0.5.0"
2020-03-05 13:09:32 +00:00
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
2020-05-03 12:41:35 +00:00
description = "A faster way to navigate your filesystem"
2020-03-05 13:09:32 +00:00
repository = "https://github.com/ajeetdsouza/zoxide/"
edition = "2018"
keywords = ["cli"]
categories = ["command-line-utilities", "filesystem"]
license = "MIT"
[dependencies]
2020-10-18 09:22:13 +00:00
anyhow = "1.0.32"
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"
2020-10-18 09:22:13 +00:00
once_cell = "1.4.1"
ordered-float = "2.0.0"
serde = { version = "1.0.116", features = ["derive"] }
tempfile = "3.1.0"
2020-10-18 09:22:13 +00:00
[target.'cfg(windows)'.dependencies]
rand = "0.7.3"
2020-10-26 19:55:02 +00:00
[target.'cfg(unix)'.dev-dependencies]
assert_cmd = "1.0.1"
2020-11-10 19:11:26 +00:00
seq-macro = "0.2.1"
2020-03-05 13:09:32 +00:00
[profile.release]
codegen-units = 1
2020-07-03 18:07:36 +00:00
lto = true