Implement ErrorCode on the milli::Error type

This commit is contained in:
Kerollmops
2022-10-04 10:38:17 +02:00
committed by Clément Renault
parent 478e3f0f6b
commit b83710ea98
6 changed files with 45 additions and 10 deletions

View File

@ -6,11 +6,12 @@ edition = "2021"
[dependencies]
actix-web = { version = "4.2.1", default-features = false }
tokio = "1.0"
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.33.0" }
proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
tokio = "1.0"
[features]
test-traits = ["proptest", "proptest-derive"]