diff --git a/extractous-core/Cargo.lock b/extractous-core/Cargo.lock index a6db0e2..8519411 100644 --- a/extractous-core/Cargo.lock +++ b/extractous-core/Cargo.lock @@ -330,7 +330,7 @@ dependencies = [ [[package]] name = "extractous" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bytemuck", "flate2", diff --git a/extractous-core/build.rs b/extractous-core/build.rs index 5788601..51bcc00 100644 --- a/extractous-core/build.rs +++ b/extractous-core/build.rs @@ -6,7 +6,7 @@ use std::process::Command; fn main() { // Don't run the build script when building docs - if env::var("DOCS_RS").is_ok() { + //if env::var("DOCS_RS").is_ok() { // Set tika_native source directory and python bindings directory let root_dir = env::var("CARGO_MANIFEST_DIR").map(PathBuf::from).unwrap(); let tika_native_source_dir = root_dir.join("tika-native"); @@ -57,7 +57,7 @@ fn main() { // Tell cargo to tell rustc to link the `tika_native` shared library. println!("cargo:rustc-link-lib=dylib=tika_native"); - } + //} } // Run the gradle build command to build tika-native @@ -278,4 +278,4 @@ pub fn install_graalvm_ce(install_dir: &PathBuf) -> PathBuf { } install_dir.join(main_dir) -} +} \ No newline at end of file