Rename MeiliDB into MeiliSearch

This commit is contained in:
Clément Renault
2019-11-26 11:06:55 +01:00
parent 58eaf78dc4
commit 7cc096e0a2
94 changed files with 126 additions and 126 deletions

10
meilisearch-http/build.rs Normal file
View File

@ -0,0 +1,10 @@
use vergen::{generate_cargo_keys, ConstantsFlags};
fn main() {
// Setup the flags, toggling off the 'SEMVER_FROM_CARGO_PKG' flag
let mut flags = ConstantsFlags::all();
flags.toggle(ConstantsFlags::SEMVER_FROM_CARGO_PKG);
// Generate the 'cargo:' key output
generate_cargo_keys(ConstantsFlags::all()).expect("Unable to generate the cargo keys!");
}