-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 933 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
authors = ["clotodex <[email protected]>"]
license-file = "LICENSE"
name = "project-chooser"
description = "project indexer to quickly find and navigate to projects"
version = "0.2.1"
edition = "2018"
[package.metadata.rpm]
cargo = { buildflags = ["--release"] }
targets = { "project-chooser" = { path = "/usr/bin/project-chooser" }, "pc-recache" = { path = "/usr/bin/pc-recache" } }
[package.metadata.rpm.files]
"bin/project-chooser-bash" = { path = "/usr/bin/project-chooser-bash" }
[package.metadata.deb]
depends = "$auto"
assets = [
["bin/project-chooser-bash", "/usr/bin/", "755"]
]
[dependencies]
clap = "2.33.0"
log = "0.4.8"
stderrlog = "0.4.3"
dirs = "2.0.2"
skim = "0.8.2"
ignore = "0.4.16"
colored = "2.0.0"
#syntect = { git = "https://github.com/trishume/syntect", branch = "move-regex-use-to-module", default-features = false, features = ["assets", "parsing", "dump-load", "dump-create", "regex-fancy"]}