mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-03-12 19:11:42 +01:00
24 lines
865 B
TOML
24 lines
865 B
TOML
[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]
|
|
anyhow = "1.0.95"
|
|
clap = { version = "4.5.24", features = ["derive"] }
|
|
dump = { path = "../dump" }
|
|
file-store = { path = "../file-store" }
|
|
indexmap = { version = "2.7.0", features = ["serde"] }
|
|
meilisearch-auth = { path = "../meilisearch-auth" }
|
|
meilisearch-types = { path = "../meilisearch-types" }
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
serde_json = { version = "1.0.135", features = ["preserve_order"] }
|
|
tempfile = "3.15.0"
|
|
time = { version = "0.3.37", features = ["formatting", "parsing", "alloc"] }
|
|
uuid = { version = "1.11.0", features = ["v4"], default-features = false }
|