2022-09-29 22:17:06 +08:00
|
|
|
[package]
|
|
|
|
name = "dump"
|
2023-02-15 20:51:07 +08:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
license.workspace = true
|
2022-09-29 22:17:06 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-09 00:09:12 +08:00
|
|
|
anyhow = "1.0.86"
|
|
|
|
flate2 = "1.0.30"
|
|
|
|
http = "0.2.12"
|
2022-10-03 22:12:01 +08:00
|
|
|
meilisearch-auth = { path = "../meilisearch-auth" }
|
2022-10-06 02:11:07 +08:00
|
|
|
meilisearch-types = { path = "../meilisearch-types" }
|
2024-01-16 22:05:03 +08:00
|
|
|
once_cell = "1.19.0"
|
2024-07-09 00:09:12 +08:00
|
|
|
regex = "1.10.5"
|
|
|
|
roaring = { version = "0.10.6", features = ["serde"] }
|
|
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.120", features = ["preserve_order"] }
|
|
|
|
tar = "0.4.41"
|
|
|
|
tempfile = "3.10.1"
|
|
|
|
thiserror = "1.0.61"
|
|
|
|
time = { version = "0.3.36", features = ["serde-well-known", "formatting", "parsing", "macros"] }
|
2024-02-07 22:51:38 +08:00
|
|
|
tracing = "0.1.40"
|
2024-07-09 00:09:12 +08:00
|
|
|
uuid = { version = "1.9.1", features = ["serde", "v4"] }
|
2022-09-29 22:17:06 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-04 00:50:06 +08:00
|
|
|
big_s = "1.0.2"
|
|
|
|
maplit = "1.0.2"
|
2022-10-21 00:03:35 +08:00
|
|
|
meili-snap = { path = "../meili-snap" }
|
2022-10-04 00:50:06 +08:00
|
|
|
meilisearch-types = { path = "../meilisearch-types" }
|