mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 05:14:27 +01:00
Remove the custom build.rs file
This commit is contained in:
parent
51d1785576
commit
9141f5ef94
27
build.rs
27
build.rs
@ -1,27 +0,0 @@
|
||||
use std::env;
|
||||
use std::fs::File;
|
||||
use std::io::{BufRead, BufReader};
|
||||
use std::path::PathBuf;
|
||||
|
||||
use fst::SetBuilder;
|
||||
|
||||
fn main() {
|
||||
let chinese_words_txt = "chinese-words.txt";
|
||||
let out_dir = env::var("OUT_DIR").unwrap();
|
||||
let chinese_words_fst = PathBuf::from(out_dir).join("chinese-words.fst");
|
||||
|
||||
// Tell Cargo that if the given file changes, to rerun this build script.
|
||||
println!("cargo:rerun-if-changed={}", chinese_words_txt);
|
||||
|
||||
let chinese_words_txt = File::open(chinese_words_txt).map(BufReader::new).unwrap();
|
||||
let chinese_words_fst = File::create(chinese_words_fst).unwrap();
|
||||
|
||||
let mut builder = SetBuilder::new(chinese_words_fst).unwrap();
|
||||
for result in chinese_words_txt.lines() {
|
||||
let line = result.unwrap();
|
||||
if let Some(s) = line.split(' ').next() {
|
||||
builder.insert(s).unwrap();
|
||||
}
|
||||
}
|
||||
builder.finish().unwrap();
|
||||
}
|
Loading…
Reference in New Issue
Block a user