2020-03-05 13:09:32 +00:00
|
|
|
[package]
|
|
|
|
name = "zoxide"
|
2020-05-24 21:25:00 +00:00
|
|
|
version = "0.4.1"
|
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"
|
|
|
|
|
|
|
|
# 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-09 18:43:16 +00:00
|
|
|
dunce = "1.0.0"
|
2020-05-15 14:10:54 +00:00
|
|
|
float-ord = "0.2.0"
|
2020-04-05 15:14:23 +00:00
|
|
|
serde = { version = "1.0.106", features = ["derive"] }
|
2020-03-27 11:41:26 +00:00
|
|
|
structopt = "0.3.12"
|
2020-03-29 06:25:21 +00:00
|
|
|
uuid = { version = "0.8.1", features = ["v4"] }
|
2020-03-27 11:41:26 +00:00
|
|
|
|
2020-03-05 13:09:32 +00:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = "fat"
|