mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 07:56:28 +00:00 
			
		
		
		
	Merge #3499
3499: Use the workspace inheritance r=Kerollmops a=irevoire Use the workspace inheritance [introduced in rust 1.64](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html#cargo-improvements-workspace-inheritance-and-multi-target-builds). It allows us to define the version of meilisearch once in the main `Cargo.toml` and let all the other `Cargo.toml` uses this version. `@curquiza` I added you as a reviewer because I had to patch some CI scripts And `@Kerollmops,` I had to bump the `cargo_toml` crates because our version was getting old and didn't support the feature yet. Also, in another PR, I would like to unify some of our dependencies to ensure we always stay in sync between all our crates. Co-authored-by: Tamo <tamo@meilisearch.com>
This commit is contained in:
		| @@ -1,8 +1,15 @@ | ||||
| [package] | ||||
| name = "milli" | ||||
| version = "1.0.0" | ||||
| authors = ["Kerollmops <clement@meilisearch.com>"] | ||||
| edition = "2018" | ||||
| publish = false | ||||
|  | ||||
| version.workspace = true | ||||
| authors.workspace = true | ||||
| description.workspace = true | ||||
| homepage.workspace = true | ||||
| readme.workspace = true | ||||
| # edition.workspace = true | ||||
| license.workspace = true | ||||
|  | ||||
| [dependencies] | ||||
| bimap = { version = "0.6.2", features = ["serde"] } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user