mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-30 23:46:28 +00:00 
			
		
		
		
	Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.42.0 to 1.43.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.43.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.43.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "xtask"
 | |
| version.workspace = true
 | |
| authors.workspace = true
 | |
| description = "Workspace automation tool following the xtask pattern <https://github.com/matklad/cargo-xtask>"
 | |
| homepage.workspace = true
 | |
| readme.workspace = true
 | |
| edition.workspace = true
 | |
| license.workspace = true
 | |
| 
 | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | |
| 
 | |
| [dependencies]
 | |
| anyhow = "1.0.95"
 | |
| build-info = { version = "1.7.0", path = "../build-info" }
 | |
| cargo_metadata = "0.19.1"
 | |
| clap = { version = "4.5.24", features = ["derive"] }
 | |
| futures-core = "0.3.31"
 | |
| futures-util = "0.3.31"
 | |
| reqwest = { version = "0.12.12", features = [
 | |
|     "stream",
 | |
|     "json",
 | |
|     "rustls-tls",
 | |
| ], default-features = false }
 | |
| serde = { version = "1.0.217", features = ["derive"] }
 | |
| serde_json = "1.0.135"
 | |
| sha2 = "0.10.8"
 | |
| sysinfo = "0.33.1"
 | |
| time = { version = "0.3.37", features = [
 | |
|     "serde",
 | |
|     "serde-human-readable",
 | |
|     "macros",
 | |
| ] }
 | |
| tokio = { version = "1.43.1", features = [
 | |
|     "rt",
 | |
|     "net",
 | |
|     "time",
 | |
|     "process",
 | |
|     "signal",
 | |
| ] }
 | |
| tracing = "0.1.41"
 | |
| tracing-subscriber = "0.3.19"
 | |
| tracing-trace = { version = "0.1.0", path = "../tracing-trace" }
 | |
| uuid = { version = "1.11.0", features = ["v7", "serde"] }
 |