forked from tinysearch/tinysearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (49 loc) · 1.34 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
[package]
name = "tinysearch"
authors = ["Matthias Endler <[email protected]>"]
version = "0.8.2"
edition = "2021"
description = "A tiny search engine for static websites"
license = "Apache-2.0/MIT"
documentation = "https://github.com/mre/tinysearch/blob/master/README.md"
homepage = "https://github.com/mre/tinysearch"
repository = "https://github.com/mre/tinysearch"
readme = "README.md"
include = ["src", "assets", "README.md"]
[lib]
[[bin]]
name = "tinysearch"
required-features = ["bin"]
[dependencies]
bincode = "1.3.3"
argh = { version = "0.1.10", optional = true }
log = { version = "0.4.19", optional = true }
serde_json = { version = "1.0.103", optional = true }
anyhow = { version = "1.0.72", optional = true }
tempfile = { version = "3.7.0", optional = true }
serde_derive = { version = "1.0.175", optional = true }
phf = { version = "0.11.2", optional = true }
strip_markdown = { version = "0.2.0", optional = true }
strum = { version = "0.25.0", features = ["derive"], optional = true }
toml_edit = { version = "0.19.14", optional = true }
[dependencies.serde]
version = "1.0.175"
features = ["derive"]
[dependencies.xorf]
version = "0.8.1"
default-features = false
features = ["serde"]
[features]
default = []
bin = [
"argh",
"log",
"serde_json",
"anyhow",
"tempfile",
"serde_derive",
"phf",
"strip_markdown",
"strum",
"toml_edit",
]