mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-10 23:30:57 +00:00
f0c5e28fd7
* Migrate errors from failure to anyhow * Migrate argument parsing from clap to structopt * Empty z command now goes to $HOME * DB updates are now atomic and isolated
27 lines
626 B
TOML
27 lines
626 B
TOML
[package]
|
|
name = "zoxide"
|
|
version = "0.2.0"
|
|
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]
|
|
anyhow = "1.0.26"
|
|
bincode = "1.2.1"
|
|
clap = "2.33.0"
|
|
dirs = "2.0.2"
|
|
fs2 = "0.4.3"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
structopt = "0.3.11"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = "fat"
|