From 59b8412544b30f7022bf26608f6602c98b41fcfe Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 30 Sep 2024 16:25:17 -0700 Subject: [PATCH] Relax `rust-version` for `wasi-preview1-component-adapter-provider` This crate is distributed on crates.io to allow access to the adapter via a Rust API and doesn't need to have the same requirement as the rest of the workspace. --- .../wasi-preview1-component-adapter/provider/Cargo.toml.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/wasi-preview1-component-adapter/provider/Cargo.toml.in b/crates/wasi-preview1-component-adapter/provider/Cargo.toml.in index a47099f951e0..93bd222fa202 100644 --- a/crates/wasi-preview1-component-adapter/provider/Cargo.toml.in +++ b/crates/wasi-preview1-component-adapter/provider/Cargo.toml.in @@ -9,7 +9,11 @@ documentation = "https://docs.rs/wasi-preview1-component-adapter-provider/" categories = ["wasm"] keywords = ["webassembly", "wasm"] edition.workspace = true -rust-version.workspace = true + +# NB: this is intentionally smaller than the workspace as this crate is just a +# few `include_bytes!` so can have a more conservative version than the rest of +# the workspace. +rust-version = "1.60.0" [lints] workspace = true