-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 860 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 860 Bytes
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 = "tantivy-cli"
version = "0.25.0"
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
description = """Command line interface for Tantivy, a search engine library."""
documentation = "https://github.com/quickwit-inc/tantivy-cli"
homepage = "https://github.com/quickwit-inc/tantivy-cli"
repository = "https://github.com/quickwit-inc/tantivy-cli"
readme = "README.md"
keywords = ["search", "information", "retrieval"]
license = "MIT"
edition = "2021"
[dependencies]
time = "0.3"
iron = "0.6"
staticfile = "0.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
persistent = "0.4"
clap = "4"
ansi_term = "0.12"
urlencoded = "0.6"
mount = "0.4"
log = "0.4"
env_logger = "0.10"
tantivy = "0.25"
crossbeam-channel = "0.5.8"
[[bin]]
name = "tantivy"
path = "src/main.rs"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false