mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 09:56:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			646 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			646 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.79"
 | 
						|
clap = { version = "4.4.17", features = ["derive"] }
 | 
						|
dump = { path = "../dump" }
 | 
						|
file-store = { path = "../file-store" }
 | 
						|
meilisearch-auth = { path = "../meilisearch-auth" }
 | 
						|
meilisearch-types = { path = "../meilisearch-types" }
 | 
						|
time = { version = "0.3.31", features = ["formatting"] }
 | 
						|
uuid = { version = "1.6.1", features = ["v4"], default-features = false }
 |