Skip to content

Commit

Permalink
Fix a few more URLs after project relocation (bytecodealliance#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton authored and sunfishcode committed Nov 13, 2019
1 parent 038a387 commit 6222857
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ For more information, see the [Rust API embedding chapter] of the Wasmtime docum

[high-level and safe Rust API]: https://docs.rs/wasmtime/
[proposed WebAssembly C API]: https://github.com/WebAssembly/wasm-c-api
[Rust API embedding chapter]: https://cranestation.github.io/wasmtime/embed-rust.html
[Rust API embedding chapter]: https://bytecodealliance.github.io/wasmtime/embed-rust.html

It's Wasmtime.
4 changes: 2 additions & 2 deletions crates/environ/src/cache/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ pub fn create_new_config<P: AsRef<Path> + Debug>(
let content = "\
# Comment out certain settings to use default values.
# For more settings, please refer to the documentation:
# https://cranestation.github.io/wasmtime/cli-cache.html
# https://bytecodealliance.github.io/wasmtime/cli-cache.html
[cache]
enabled = true
Expand All @@ -192,7 +192,7 @@ enabled = true
const ZSTD_COMPRESSION_LEVELS: std::ops::RangeInclusive<i32> = 0..=21;
lazy_static! {
static ref PROJECT_DIRS: Option<ProjectDirs> =
ProjectDirs::from("", "CraneStation", "wasmtime");
ProjectDirs::from("", "BytecodeAlliance", "wasmtime");
static ref DEFAULT_CONFIG_PATH: Result<PathBuf, String> = PROJECT_DIRS
.as_ref()
.map(|proj_dirs| proj_dirs.config_dir().join("wasmtime-cache-config.toml"))
Expand Down

0 comments on commit 6222857

Please sign in to comment.