mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-22 13:11:32 +00:00
update the binary too
This commit is contained in:
@ -6,8 +6,8 @@ use std::{
|
|||||||
path::PathBuf,
|
path::PathBuf,
|
||||||
};
|
};
|
||||||
|
|
||||||
use wasmer_runtime_core::cache::{Error as CacheError, cache_versioned_sub_directory};
|
use wasmer_runtime_core::cache::{Error as CacheError};
|
||||||
pub use wasmer_runtime_core::cache::{Artifact, Cache, WasmHash};
|
pub use wasmer_runtime_core::cache::{Artifact, Cache, WasmHash, cache_versioned_sub_directory};
|
||||||
|
|
||||||
/// Representation of a directory that contains compiled wasm artifacts.
|
/// Representation of a directory that contains compiled wasm artifacts.
|
||||||
///
|
///
|
||||||
|
@ -12,7 +12,7 @@ use structopt::StructOpt;
|
|||||||
use wasmer::webassembly::InstanceABI;
|
use wasmer::webassembly::InstanceABI;
|
||||||
use wasmer::*;
|
use wasmer::*;
|
||||||
use wasmer_emscripten;
|
use wasmer_emscripten;
|
||||||
use wasmer_runtime::cache::{Cache as BaseCache, FileSystemCache, WasmHash};
|
use wasmer_runtime::cache::{Cache as BaseCache, FileSystemCache, WasmHash, cache_versioned_sub_directory};
|
||||||
|
|
||||||
#[derive(Debug, StructOpt)]
|
#[derive(Debug, StructOpt)]
|
||||||
#[structopt(name = "wasmer", about = "Wasm execution runtime.")]
|
#[structopt(name = "wasmer", about = "Wasm execution runtime.")]
|
||||||
@ -71,6 +71,7 @@ fn get_cache_dir() -> PathBuf {
|
|||||||
Err(_) => {
|
Err(_) => {
|
||||||
// We use a temporal directory for saving cache files
|
// We use a temporal directory for saving cache files
|
||||||
let mut temp_dir = env::temp_dir();
|
let mut temp_dir = env::temp_dir();
|
||||||
|
temp_dir.push(cache_versioned_sub_directory());
|
||||||
temp_dir.push("wasmer");
|
temp_dir.push("wasmer");
|
||||||
temp_dir
|
temp_dir
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user