forked from quickwit-oss/tantivy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 888 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
42
43
[package]
name = "tantivy-cli"
version = "0.13.0"
authors = ["Paul Masurel <[email protected]>"]
description = """Command line interface for Tantivy, a search engine library."""
documentation = "https://github.com/tantivy-search/tantivy-cli"
homepage = "https://github.com/tantivy-search/tantivy-cli"
repository = "https://github.com/tantivy-search/tantivy-cli"
readme = "README.md"
keywords = ["search", "information", "retrieval"]
license = "MIT"
edition = "2018"
[dependencies]
time = "0.2"
iron = "0.6"
staticfile = "0.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
persistent = "0.4"
clap = "3.0.0-beta.1"
ansi_term = "0.12"
urlencoded = "0.6"
mount = "0.4"
chan = "0.1"
log = "0.4"
futures = "0.3"
env_logger = "0.7"
tantivy = "0.13"
[[bin]]
name = "tantivy"
path = "src/main.rs"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false
lto = true