-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 938 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
31
32
33
34
35
36
37
38
39
[package]
name = "scotty"
version = "0.3.4"
authors = ["Wouter Dullaert <wouter.dullaert@gmail.com>"]
edition = "2018"
license = "MPL-2.0"
keywords = ["cd", "shell", "bash", "fish", "zsh"]
categories = ["command-line-utilities"]
readme = "README.md"
repository = "https://github.com/wdullaer/scotty"
description = "A chillingly fast dir switcher using fuzzy search."
[dependencies]
clap = { version = "^4.5.21", features = ["cargo"]}
sled = "^0.34.7"
thiserror = "^2.0.3"
anyhow = "^1.0.93"
fst = "^0.4.7"
regex-automata = { version = "^0.1.10", features = ["transducer"]}
fuzzy-matcher = "0.3.7"
bincode = "^1.3.3"
log = "^0.4.22"
pretty_env_logger = "^0.5.0"
directories = "^5.0.1"
serde_json = "^1.0.133"
serde = {version = "^1.0.215", features = ["derive"]}
chrono = "^0.4.38"
tabwriter = "^1.4.0"
[dev-dependencies]
tempfile = "^3.14.0"
[profile.release]
lto = true
codegen-units = 1
[[bin]]
name = "scotty"
path = "src/main.rs"