-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
41 lines (35 loc) · 927 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
[package]
name = "tantivy-cli"
version = "0.23.0-dev"
authors = ["Paul Masurel <[email protected]>"]
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 = { git = "https://github.com/quickwit-oss/tantivy/", rev = "2f5a269" }
crossbeam-channel = "0.5.8"
[[bin]]
name = "tantivy"
path = "src/main.rs"
[profile.release]
opt-level = 3
debug = true
debug-assertions = false