MeiliSearch/Cargo.toml

69 lines
1.4 KiB
TOML
Raw Normal View History

2020-05-25 20:39:53 +02:00
[package]
2020-07-12 00:16:41 +02:00
name = "milli"
2020-05-25 20:39:53 +02:00
version = "0.1.0"
authors = ["Kerollmops <clement@meilisearch.com>"]
edition = "2018"
[dependencies]
anyhow = "1.0.28"
bstr = "0.2.13"
2020-05-25 20:39:53 +02:00
byteorder = "1.3.4"
crossbeam-channel = "0.5.0"
2020-05-25 20:39:53 +02:00
csv = "1.1.3"
flate2 = "1.0.17"
fst = "0.4.4"
2020-05-25 20:39:53 +02:00
fxhash = "0.2.1"
grenad = { git = "https://github.com/Kerollmops/grenad.git", rev = "c390cfe" }
heed = { version = "0.8.1", default-features = false, features = ["lmdb"] }
human_format = "1.0.3"
2020-05-25 20:39:53 +02:00
jemallocator = "0.3.2"
levenshtein_automata = { version = "0.2.0", features = ["fst_automaton"] }
linked-hash-map = "0.5.3"
memmap = "0.7.0"
2020-09-08 15:16:04 +02:00
near-proximity = { git = "https://github.com/Kerollmops/plane-sweep-proximity", rev = "6608205" }
once_cell = "1.4.0"
rayon = "1.3.1"
ringtail = "0.3.0"
roaring = "0.6.1"
2020-10-18 15:16:57 +02:00
serde_json = "1.0.59"
2020-05-25 20:39:53 +02:00
slice-group-by = "0.2.6"
smallstr = "0.2.0"
smallvec = "1.4.0"
structopt = { version = "0.3.14", default-features = false, features = ["wrap_help"] }
tempfile = "3.1.0"
2020-05-25 20:39:53 +02:00
# documents words self-join
itertools = "0.9.0"
2020-07-12 10:55:09 +02:00
# logging
log = "0.4.11"
2020-10-14 09:59:27 +02:00
stderrlog = "0.5.0"
2020-07-12 10:55:09 +02:00
2020-05-31 17:48:13 +02:00
# http server
2020-07-11 14:17:37 +02:00
askama = "0.10.1"
askama_warp = "0.10.0"
bytes = "0.5.6"
futures = "0.3.6"
2020-05-31 17:48:13 +02:00
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
2020-05-31 17:48:13 +02:00
warp = "0.2.2"
[dev-dependencies]
2020-10-14 09:59:27 +02:00
criterion = "0.3.3"
[build-dependencies]
fst = "0.4.4"
[features]
default = []
[[bench]]
name = "search"
harness = false
2020-05-25 20:39:53 +02:00
[profile.release]
debug = true
2020-06-18 18:37:57 +02:00
[profile.bench]
debug = true