From 430fd835a5ec598393cd5eeb9bda8c8df30c5346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Tue, 12 Dec 2023 13:46:47 +0100 Subject: [PATCH] feat: upgrade Lassie to v0.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure Lassie's user agent to report Go Lassie version plus our custom suffix, e.g. lassie/v0.21.0-rs. Full release notes: https://github.com/filecoin-station/rusty-lassie/releases/tag/v0.8.0 Signed-off-by: Miroslav Bajtoš --- Cargo.lock | 4 ++-- runtime/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3a193058..7008ddc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1914,9 +1914,9 @@ dependencies = [ [[package]] name = "lassie" -version = "0.7.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e507939723b8c97b0ab85d300b72864f9c548b2930d7905089e5441263e0d48" +checksum = "6f7526ea826091192f0fb73b1d0a5ee38339867bcf7dd6b4323a992dcd317a9b" dependencies = [ "cc", "log", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 3f019f04..e28ede35 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -21,7 +21,7 @@ deno_fetch = "0.148.0" deno_url = "0.124.0" deno_web = "0.155.0" deno_webidl = "0.124.0" -lassie = "0.7.0" +lassie = "0.8.0" # lassie = { git = "https://github.com/filecoin-station/rusty-lassie.git" } log.workspace = true once_cell = "1.19.0"