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"
|
2020-05-31 16:09:34 +02:00
|
|
|
default-run = "indexer"
|
2020-05-25 20:39:53 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.28"
|
2020-08-06 12:38:42 +02:00
|
|
|
arc-cache = { git = "https://github.com/Kerollmops/rust-arc-cache.git", rev = "56530f2" }
|
2020-05-25 20:39:53 +02:00
|
|
|
bitpacking = "0.8.2"
|
|
|
|
byteorder = "1.3.4"
|
2020-05-31 16:09:34 +02:00
|
|
|
cow-utils = "0.1.2"
|
2020-05-25 20:39:53 +02:00
|
|
|
csv = "1.1.3"
|
|
|
|
fst = "0.4.3"
|
|
|
|
fxhash = "0.2.1"
|
2020-07-05 19:50:28 +02:00
|
|
|
heed = { version = "0.8.1", default-features = false, features = ["lmdb"] }
|
2020-05-25 20:39:53 +02:00
|
|
|
jemallocator = "0.3.2"
|
2020-05-31 17:01:11 +02:00
|
|
|
levenshtein_automata = { version = "0.2.0", features = ["fst_automaton"] }
|
2020-05-31 14:20:17 +02:00
|
|
|
memmap = "0.7.0"
|
2020-05-31 18:21:24 +02:00
|
|
|
once_cell = "1.4.0"
|
2020-08-07 12:14:03 +02:00
|
|
|
oxidized-mtbl = { git = "https://github.com/Kerollmops/oxidized-mtbl.git", rev = "13294cc" }
|
2020-08-06 12:38:42 +02:00
|
|
|
pipe = "0.3.0"
|
2020-07-01 17:49:46 +02:00
|
|
|
rayon = "1.3.1"
|
2020-07-07 16:48:49 +02:00
|
|
|
roaring = { git = "https://github.com/Kerollmops/roaring-rs.git", branch = "mem-usage" }
|
2020-05-25 20:39:53 +02:00
|
|
|
slice-group-by = "0.2.6"
|
|
|
|
smallstr = "0.2.0"
|
2020-05-31 14:20:17 +02:00
|
|
|
smallvec = "1.4.0"
|
2020-05-25 20:39:53 +02:00
|
|
|
structopt = { version = "0.3.14", default-features = false }
|
2020-05-31 14:20:17 +02:00
|
|
|
tempfile = "3.1.0"
|
2020-05-25 20:39:53 +02:00
|
|
|
|
2020-07-12 10:55:09 +02:00
|
|
|
# logging
|
|
|
|
log = "0.4.8"
|
|
|
|
stderrlog = "0.4.3"
|
|
|
|
|
2020-06-09 23:06:59 +02:00
|
|
|
# best proximity
|
2020-06-14 12:51:54 +02:00
|
|
|
indexmap = "1.4.0"
|
2020-06-09 23:06:59 +02:00
|
|
|
|
2020-06-05 20:12:52 +02:00
|
|
|
# to implement internally
|
|
|
|
itertools = "0.9.0"
|
|
|
|
|
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"
|
2020-05-31 17:48:13 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
tokio = { version = "0.2.15", features = ["full"] }
|
|
|
|
warp = "0.2.2"
|
|
|
|
|
2020-06-19 18:24:03 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
|
|
|
|
2020-06-20 13:25:42 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
2020-06-19 18:24:03 +02:00
|
|
|
[[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
|