MeiliSearch/Cargo.lock

145 lines
6.2 KiB
Plaintext
Raw Normal View History

2018-04-22 17:34:41 +02:00
[[package]]
name = "bincode"
2018-06-24 01:28:27 +02:00
version = "1.0.1"
2018-04-22 17:34:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2018-06-24 01:28:27 +02:00
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.68 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 17:34:41 +02:00
]
2018-04-22 15:54:34 +02:00
[[package]]
name = "byteorder"
2018-06-24 01:28:27 +02:00
version = "1.2.3"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "fst"
version = "0.3.0"
source = "git+https://github.com/Kerollmops/fst.git?branch=op-builder-with-state#6e0ab4e4ee5443cc55079996bf9f703086322c33"
2018-04-22 15:54:34 +02:00
dependencies = [
2018-06-24 01:28:27 +02:00
"byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
"memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
2018-05-27 15:23:43 +02:00
[[package]]
name = "group-by"
version = "0.1.0"
source = "git+https://github.com/Kerollmops/group-by.git#034fadc462dc511ed53f44f6091f8707a27ca392"
2018-05-27 15:23:43 +02:00
2018-05-13 12:38:24 +02:00
[[package]]
name = "levenshtein_automata"
2018-06-24 01:28:27 +02:00
version = "0.1.1"
source = "git+https://github.com/Kerollmops/levenshtein-automata.git?branch=custom-fst#9d01a14e57ded8e7a9a8d2b4e790f7b364e710b4"
2018-05-13 12:38:24 +02:00
dependencies = [
"fst 0.3.0 (git+https://github.com/Kerollmops/fst.git?branch=op-builder-with-state)",
]
2018-04-22 15:54:34 +02:00
[[package]]
name = "libc"
2018-06-24 01:28:27 +02:00
version = "0.2.42"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "memmap"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2018-06-24 01:28:27 +02:00
"libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
]
[[package]]
name = "proc-macro2"
2018-06-24 01:28:27 +02:00
version = "0.4.6"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "quote"
2018-06-24 01:28:27 +02:00
version = "0.6.3"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2018-06-24 01:28:27 +02:00
"proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
]
[[package]]
name = "raptor"
version = "0.1.0"
dependencies = [
2018-06-24 01:28:27 +02:00
"bincode 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fst 0.3.0 (git+https://github.com/Kerollmops/fst.git?branch=op-builder-with-state)",
2018-05-27 15:23:43 +02:00
"group-by 0.1.0 (git+https://github.com/Kerollmops/group-by.git)",
2018-06-24 01:28:27 +02:00
"levenshtein_automata 0.1.1 (git+https://github.com/Kerollmops/levenshtein-automata.git?branch=custom-fst)",
"serde 1.0.68 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.68 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
]
[[package]]
name = "serde"
version = "1.0.68"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "serde_derive"
version = "1.0.68"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2018-06-24 01:28:27 +02:00
"proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
]
[[package]]
name = "syn"
2018-06-24 01:28:27 +02:00
version = "0.14.2"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2018-06-24 01:28:27 +02:00
"proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
2018-04-22 15:54:34 +02:00
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi"
2018-06-24 01:28:27 +02:00
version = "0.3.5"
2018-04-22 15:54:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[metadata]
2018-06-24 01:28:27 +02:00
"checksum bincode 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9f2fb9e29e72fd6bc12071533d5dc7664cb01480c59406f656d7ac25c7bd8ff7"
"checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9"
"checksum fst 0.3.0 (git+https://github.com/Kerollmops/fst.git?branch=op-builder-with-state)" = "<none>"
2018-05-27 15:23:43 +02:00
"checksum group-by 0.1.0 (git+https://github.com/Kerollmops/group-by.git)" = "<none>"
2018-06-24 01:28:27 +02:00
"checksum levenshtein_automata 0.1.1 (git+https://github.com/Kerollmops/levenshtein-automata.git?branch=custom-fst)" = "<none>"
"checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1"
2018-04-22 15:54:34 +02:00
"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
2018-06-24 01:28:27 +02:00
"checksum proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "effdb53b25cdad54f8f48843d67398f7ef2e14f12c1b4cb4effc549a6462a4d6"
"checksum quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e44651a0dc4cdd99f71c83b561e221f714912d11af1a4dff0631f923d53af035"
"checksum serde 1.0.68 (registry+https://github.com/rust-lang/crates.io-index)" = "429fcc4efa8a11341b5422c2ace724daba276c1748467e869478f53c0ba4562e"
"checksum serde_derive 1.0.68 (registry+https://github.com/rust-lang/crates.io-index)" = "6a25ad0bf818ed2d180c89addbe29198d1de6c89ed08a48aa6a4d3d16a63cbfe"
2018-06-24 01:28:27 +02:00
"checksum syn 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c67da57e61ebc7b7b6fff56bb34440ca3a83db037320b0507af4c10368deda7d"
2018-04-22 15:54:34 +02:00
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2018-06-24 01:28:27 +02:00
"checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd"
2018-04-22 15:54:34 +02:00
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"