From 5ac1666f0ea457ea986e2ec56cc0645faae49e6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Feb 2025 21:23:53 +0000 Subject: [PATCH] Bump rig-core from 0.7.0 to 0.9.0 Bumps [rig-core](https://github.com/0xPlaygrounds/rig) from 0.7.0 to 0.9.0. - [Release notes](https://github.com/0xPlaygrounds/rig/releases) - [Commits](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.7.0...rig-core-v0.9.0) --- updated-dependencies: - dependency-name: rig-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 43 +++++++++++++++++++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 42 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1835a42..27642ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -305,6 +305,28 @@ dependencies = [ "windows-sys 0.59.0", ] +[[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "async-trait" version = "0.1.83" @@ -1615,20 +1637,24 @@ dependencies = [ "system-configuration", "tokio", "tokio-native-tls", + "tokio-util", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", + "wasm-streams", "web-sys", "winreg", ] [[package]] name = "rig-core" -version = "0.7.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f8190b6b290cc0b9bd7ff44156e288f0df82c2d3cbccc9ffa1c44493b38ffc4" +checksum = "43348451da1864f173a4f615ab9ddda1f6017d6493564ac70db950f0b2a103dd" dependencies = [ + "async-stream", + "bytes", "futures", "glob", "ordered-float", @@ -2250,6 +2276,19 @@ version = "0.2.99" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" +[[package]] +name = "wasm-streams" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + [[package]] name = "web-sys" version = "0.3.76" diff --git a/Cargo.toml b/Cargo.toml index 4c82651..59dd63f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ dotenvy = "0.15.7" env_logger = "0.11.6" futures = "0.3.31" log = "0.4.25" -rig-core = "0.7.0" +rig-core = "0.9.0" serde = "1.0.217" serde_json = "1.0.138" tokio = { version = "1.43.0", features = ["full"] }