zoxide/Cargo.toml

30 lines
711 B
TOML
Raw Normal View History

2020-03-05 13:09:32 +00:00
[package]
name = "zoxide"
2020-04-03 13:14:38 +00:00
version = "0.3.1"
2020-03-05 13:09:32 +00:00
authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
description = "A cd command that learns your habits"
repository = "https://github.com/ajeetdsouza/zoxide/"
edition = "2018"
keywords = ["cli"]
categories = ["command-line-utilities", "filesystem"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-04-03 13:14:38 +00:00
anyhow = "1.0.28"
2020-03-05 13:09:32 +00:00
bincode = "1.2.1"
clap = "2.33.0"
dirs = "2.0.2"
2020-04-05 15:14:23 +00:00
serde = { version = "1.0.106", features = ["derive"] }
structopt = "0.3.12"
uuid = { version = "0.8.1", features = ["v4"] }
[target.'cfg(unix)'.dependencies]
bstr = "0.2.12"
2020-03-05 13:09:32 +00:00
[profile.release]
codegen-units = 1
lto = "fat"