@@ -27,14 +27,14 @@ fn main() -> Result<()> {
2727fn stubs_for_clippy ( ) -> Result < ( ) > {
2828 println ! ( "cargo:warning=using stubbed engine and core library for static analysis purposes..." ) ;
2929
30- let engine_path = PathBuf :: from ( env:: var_os ( "OUT_DIR" ) . unwrap ( ) ) . join ( "engine.wasm.zstd " ) ;
30+ let engine_path = PathBuf :: from ( env:: var_os ( "OUT_DIR" ) . unwrap ( ) ) . join ( "engine.wasm.zst " ) ;
3131
3232 if !engine_path. exists ( ) {
3333 Encoder :: new ( File :: create ( engine_path) ?, ZSTD_COMPRESSION_LEVEL ) ?. do_finish ( ) ?;
3434 }
3535
3636 let core_library_path =
37- PathBuf :: from ( env:: var_os ( "OUT_DIR" ) . unwrap ( ) ) . join ( "python-lib.tar.zstd " ) ;
37+ PathBuf :: from ( env:: var_os ( "OUT_DIR" ) . unwrap ( ) ) . join ( "python-lib.tar.zst " ) ;
3838
3939 if !core_library_path. exists ( ) {
4040 Builder :: new ( Encoder :: new (
@@ -63,7 +63,7 @@ fn package_engine_and_core_library() -> Result<()> {
6363
6464 if engine_path. exists ( ) {
6565 let copied_engine_path =
66- PathBuf :: from ( env:: var ( "OUT_DIR" ) . unwrap ( ) ) . join ( "engine.wasm.zstd " ) ;
66+ PathBuf :: from ( env:: var ( "OUT_DIR" ) . unwrap ( ) ) . join ( "engine.wasm.zst " ) ;
6767
6868 let mut encoder = Encoder :: new ( File :: create ( copied_engine_path) ?, ZSTD_COMPRESSION_LEVEL ) ?;
6969 io:: copy ( & mut File :: open ( engine_path) ?, & mut encoder) ?;
@@ -86,7 +86,7 @@ fn package_engine_and_core_library() -> Result<()> {
8686
8787 if core_library_path. exists ( ) {
8888 let copied_core_library_path =
89- PathBuf :: from ( env:: var ( "OUT_DIR" ) . unwrap ( ) ) . join ( "python-lib.tar.zstd " ) ;
89+ PathBuf :: from ( env:: var ( "OUT_DIR" ) . unwrap ( ) ) . join ( "python-lib.tar.zst " ) ;
9090
9191 let mut builder = Builder :: new ( Encoder :: new (
9292 File :: create ( copied_core_library_path) ?,
0 commit comments