mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 07:56:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			995 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			995 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"
 | |
| arroy_v04_to_v05 = { package = "arroy", git = "https://github.com/meilisearch/arroy/", tag = "DO-NOT-DELETE-upgrade-v04-to-v05" }
 | |
| 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 }
 |