forked from cantino/mcfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 882 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
[package]
name = "mcfly"
version = "0.4.0"
authors = ["Andrew Cantino <[email protected]>"]
edition = "2018"
description = "McFly replaces your default ctrl-r shell history search with an intelligent search engine that takes into account your working directory and the context of recently executed commands. McFly's suggestions are prioritized in real time with a small neural network."
license = "MIT"
repository = "https://github.com/cantino/mcfly"
exclude = [
"HomebrewFormula",
"HomebrewFormula/*",
"pkg/*",
"docs/*",
]
[profile.release]
lto = true
[profile.dev]
debug = true
[dependencies]
clap = "2.33"
csv = "1"
dirs = "2.0"
libc = "0.2"
rand = "0.7"
regex = "1"
relative-path = "1.0"
shellexpand = "2.0"
termion = "1.5.5"
unicode-segmentation = "1.6"
[dependencies.rusqlite]
version = "0.15.0"
features = ["bundled", "functions", "unlock_notify"]