-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 942 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
40
41
[package]
name = "bhop"
version = "0.8.8"
edition = "2021"
authors = ["Shane Stephenson <[email protected]>"]
readme = "README.md"
description = "Small CLI tool to help you hop around the terminal and easily edit files."
homepage = "https://github.com/UnsafeOats/hop"
repository = "https://github.com/UnsafeOats/hop"
license = "MIT"
keywords = ["cli", "cd", "hop", "navigate", "shortcut"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "4.0.0"
serde = "1.0.152"
serde_derive = "1.0.152"
tempfile = "3.3.0"
toml = "0.5.10"
chrono = "0.4.23"
anyhow = "1.0"
sqlite = "0.30.4"
colored = "2.0.0"
serial_test = "1.0.0"
tempdir = "0.3.7"
proceed = "0.1.0"
glob = "0.3.1"
[build-dependencies]
dos2unix = "0.1.0"
dirs = "4.0.0"
anyhow = "1.0"
sqlite = "0.30.4"
serde = "1.0.152"
serde_derive = "1.0.152"
toml = "0.5.10"
[[bin]]
name = "bhop"
path = "src/main.rs"