-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (35 loc) · 939 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 <[email protected]>"]
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.26", features = ["cargo"]}
sled = "^0.34.7"
thiserror = "^2.0.11"
anyhow = "^1.0.95"
fst = "^0.4.7"
regex-automata = { version = "^0.1.10", features = ["transducer"]}
fuzzy-matcher = "0.3.7"
bincode = "^1.3.3"
log = "^0.4.25"
pretty_env_logger = "^0.5.0"
directories = "^6.0.0"
serde_json = "^1.0.137"
serde = {version = "^1.0.217", features = ["derive"]}
chrono = "^0.4.39"
tabwriter = "^1.4.1"
[dev-dependencies]
tempfile = "^3.15.0"
[profile.release]
lto = true
codegen-units = 1
[[bin]]
name = "scotty"
path = "src/main.rs"