build: Update pnpm to v9 (#1309)

* build: Update pnpm to v9

* update actions

* remove last actions-rs usage

* clippy

* clippy again

* revert default feature

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/9065219591

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
Fabian-Lars
2024-05-13 15:04:07 +00:00
committed by tauri-bot
parent 4ec816335a
commit e150840b46

View File

@@ -23,7 +23,7 @@ struct Http<R: Runtime> {
app: AppHandle<R>,
}
trait HttpExt<R: Runtime> {
/* trait HttpExt<R: Runtime> {
fn http(&self) -> &Http<R>;
}
@@ -31,7 +31,7 @@ impl<R: Runtime, T: Manager<R>> HttpExt<R> for T {
fn http(&self) -> &Http<R> {
self.state::<Http<R>>().inner()
}
}
} */
pub fn init<R: Runtime>() -> TauriPlugin<R> {
Builder::<R>::new("http")