MeiliSearch/meilitool/Cargo.toml

20 lines
646 B
TOML
Raw Normal View History

[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"] }
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 }