mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 04:17:10 +02:00
write the compat layer from v2 to v3
This commit is contained in:
parent
0c8e690675
commit
1a20ef2a79
19 changed files with 1737 additions and 36 deletions
|
@ -4,8 +4,10 @@ use thiserror::Error;
|
|||
pub enum Error {
|
||||
#[error("The version 1 of the dumps is not supported anymore. You can re-export your dump from a version between 0.21 and 0.24, or start fresh from a version 0.25 onwards.")]
|
||||
DumpV1Unsupported,
|
||||
#[error("Bad index name")]
|
||||
#[error("Bad index name.")]
|
||||
BadIndexName,
|
||||
#[error("Malformed task.")]
|
||||
MalformedTask,
|
||||
|
||||
#[error(transparent)]
|
||||
Io(#[from] std::io::Error),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue