From ef207053ca952f456b107301c4f2e155ae8b85fd Mon Sep 17 00:00:00 2001 From: Erik Chi <59949156+erikziyunchi@users.noreply.github.com> Date: Sat, 27 Jan 2024 17:49:25 -0500 Subject: [PATCH] fix: dependabot config file remove double quotes for versions + remove the upgrade for cap-std --- .github/dependabot.yml | 10 +++++----- crates/water/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 50dd07a..2e03f6b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,17 +4,17 @@ updates: directory: "/" schedule: interval: weekly - open-pull-requests-limit: 5 + open-pull-requests-limit: 10 ignore: - dependency-name: wasmtime versions: - - "17.0.0" + - 17.0.0 - dependency-name: wasmtime-wasi versions: - - "17.0.0" + - 17.0.0 - dependency-name: wasi-common versions: - - "17.0.0" + - 17.0.0 - dependency-name: cap-std versions: - - "2.0.0" \ No newline at end of file + - 2.0.0 \ No newline at end of file diff --git a/crates/water/Cargo.toml b/crates/water/Cargo.toml index b8e7949..9a7ca85 100644 --- a/crates/water/Cargo.toml +++ b/crates/water/Cargo.toml @@ -19,7 +19,7 @@ wasmtime-wasi = "17.0.0" wasi-common = "17.0.0" wasmtime-wasi-threads = "17.0.0" futures = "0.3" -cap-std = "3.0.0" +cap-std = "2.0.0" libc = "0.2.147" serde = { version = "1.0", features = ["derive"] } url = { version = "2.2.2", features = ["serde"] }