Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
micouy committed Apr 12, 2021
1 parent e1d4748 commit b83e939
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,47 @@
[package]
name = "kn"
description = "cd alternative - navigate by matching slices of path"
version = "0.1.0"
authors = ["micouy <[email protected]>"]
edition = "2018"
autobins = false
include = [
"**/*.rs",
"init",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE.txt",
"rustfmt.toml",
]

authors = ["micouy <[email protected]>"]
description = "`cd` alternative. Navigate by typing abbreviation of paths."
repository = "https://github.com/micouy/kn"
readme = "README.md"
license = "MIT"

categories = ["command-line-utilities", "filesystem"]
keywords = ["cli", "utility", "filesystem"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[[bin]]
name = "_kn"
path = "src/main.rs"


[dependencies]
regex = "1.4"
clap = "2.33"
thiserror = "1.0"
pretty_env_logger = "*"
pretty_env_logger = "0.4"
log = { version = "0.4", features = ["release_max_level_off"] }
tera = { version = "1", default-features = false }
ansi_term = "*"
ansi_term = "0.12"
strsim = "0.10"


[dev-dependencies]
pretty_assertions = "*"
pretty_assertions = "0.7"


[profile.release]
lto = true

0 comments on commit b83e939

Please sign in to comment.