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-01-16 15:05:03 +01:00
|
|
|
anyhow = "1.0.79"
|
|
|
|
clap = { version = "4.4.17", 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-01-16 15:05:03 +01:00
|
|
|
time = { version = "0.3.31", features = ["formatting"] }
|
|
|
|
uuid = { version = "1.6.1", features = ["v4"], default-features = false }
|