2023-10-25 10:49:50 +02:00
|
|
|
[package]
|
|
|
|
name = "meilitool"
|
|
|
|
description = "A CLI to edit a Meilisearch database from the command line"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-08 18:09:12 +02:00
|
|
|
anyhow = "1.0.86"
|
2024-07-10 13:46:24 +02:00
|
|
|
clap = { version = "4.5.9", features = ["derive"] }
|
2023-10-25 10:49:50 +02:00
|
|
|
dump = { path = "../dump" }
|
|
|
|
file-store = { path = "../file-store" }
|
|
|
|
meilisearch-auth = { path = "../meilisearch-auth" }
|
|
|
|
meilisearch-types = { path = "../meilisearch-types" }
|
2024-07-08 18:09:12 +02:00
|
|
|
time = { version = "0.3.36", features = ["formatting"] }
|
2024-07-10 13:46:24 +02:00
|
|
|
uuid = { version = "1.10.0", features = ["v4"], default-features = false }
|