-
Notifications
You must be signed in to change notification settings - Fork 44
/
Cargo.toml
34 lines (30 loc) · 884 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
[package]
name = "eureka"
version = "2.0.0"
description = "CLI tool to input and store your ideas without leaving the terminal"
authors = ["Simon Egersand <[email protected]>"]
categories = ["command-line-interface", "command-line-utilities"]
keywords = ["cli", "terminal", "productivity", "git", "ideas"]
documentation = "https://github.com/simeg/eureka/blob/master/README.md"
homepage = "https://github.com/simeg/eureka"
repository = "https://github.com/simeg/eureka"
readme = "README.md"
license = "MIT"
edition = "2021"
exclude = [
"assets/*",
"tests/*",
"scripts/*",
]
[dependencies]
clap = { version = "4.2.1", features = ["cargo"] }
dirs = "5.0.0"
git2 = "0.16.1"
termcolor = "1.2.0"
which = "4.4.0"
log = "0.4.17"
pretty_env_logger = "0.4.0"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
[dev-dependencies]
tempfile = "3.5.0"