-
Notifications
You must be signed in to change notification settings - Fork 178
/
Cargo.toml
54 lines (45 loc) · 1.44 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "mcfly"
version = "0.9.2"
authors = ["Andrew Cantino <[email protected]>"]
edition = "2021"
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"
categories = ["command-line-utilities"]
exclude = ["HomebrewFormula", "HomebrewFormula/*", "pkg/*", "docs/*"]
[profile.release]
lto = true
[profile.dev]
debug = true
[dependencies]
config = { version = "0.14.0", default-features = false, features = ["toml"] }
chrono = "0.4"
chrono-systemd-time = "0.3"
csv = "1"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
humantime = "2.1"
directories-next = "2.0"
itertools = "0.12"
rand = "0.8"
path-absolutize = "3.1"
regex = { version = "1", default-features = false, features = ["perf", "std"] }
shellexpand = "3"
unicode-segmentation = "1.11"
[dependencies.rusqlite]
version = "0.31"
features = ["functions", "unlock_notify"]
[dependencies.crossterm]
version = "0.27"
features = ["use-dev-tty"]
[dependencies.clap]
version = "4"
features = ["derive"]
[target.'cfg(not(windows))'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
autopilot = "0.4.0"
[features]
default = ["sqlite-bundled"]
sqlite-bundled = ["rusqlite/bundled"]