-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
74 lines (59 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "gooseberry"
version = "0.10.1"
authors = ["Ninjani"]
edition = "2021"
description = "A command line utility to generate a knowledge base from Hypothesis annotations "
repository = "https://github.com/out-of-cheese-error/gooseberry"
readme = "README.md"
license = "MIT / Apache-2.0"
keywords = ["knowledge-base", "hypothesis", "cli", "wiki"]
categories = ["command-line-utilities"]
include = ["src/**/*", "README.md"]
[dependencies]
# Hypothesis
hypothesis = { version = "0.12.0", default-features = false }
tokio = { version = "1.20.1", features = ["macros"] }
# To extract the base URI
url = "2.2.2"
urlencoding = "2.1.3"
# CLI
clap = { version = "4.4.12", features = ["derive", "env"] }
clap_complete = "4.4.5"
# Database
sled = "0.34.7"
# Configuration management
confy = "0.4.0"
directories-next = "1.0.1"
# Error handling
eyre = "0.6.11"
color-eyre = "0.6.2"
thiserror = "1.0.53"
# Serializing
serde = "1.0.193"
serde_json = "1.0.108"
serde_derive = "1.0.193"
ciborium = "0.2.1"
# Parsing and manipulating dates
chrono = { version = "0.4.31", features = ["serde"] }
chrono-english = "0.1.7"
# Fuzzy search
skim = "0.10.4"
# Console related
dialoguer = "0.11.0"
bat = { version = "0.24.0", default-features = false, features = ["regex-fancy"] }
# Indicator bar
indicatif = "0.17.7"
# Templating markdown
handlebars = "4.3.7"
# Sanitizing filenames
sanitize-filename = "0.5.0"
handlebars_misc_helpers = "0.13.0"
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"
tempfile = "3.9.0"
dotenv = "0.15.0"
futures = "0.3.30"
[profile.release]
panic = 'abort'