diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1928a344..955057ab 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: - components: clippy,rustfmt + components: llvm-tools - name: Install cargo-llvm-cov uses: taiki-e/install-action@v2 with: diff --git a/Cargo.lock b/Cargo.lock index c6ad4844..d4330013 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,9 +135,6 @@ name = "anyhow" version = "1.0.86" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" -dependencies = [ - "backtrace", -] [[package]] name = "arc-swap" @@ -4136,7 +4133,6 @@ version = "0.5.0" dependencies = [ "anyhow", "async-openai", - "async-stream", "async-trait", "aws-config", "aws-credential-types", diff --git a/swiftide/Cargo.toml b/swiftide/Cargo.toml index c4e77252..19ce6a78 100644 --- a/swiftide/Cargo.toml +++ b/swiftide/Cargo.toml @@ -10,8 +10,7 @@ categories = ["asynchronous"] repository = "https://github.com/bosun-ai/swiftide-rs" [dependencies] -anyhow = { version = "1.0", features = ["backtrace"] } -async-stream = "0.3" +anyhow = { version = "1.0" } async-trait = "0.1" chrono = { version = "0.4" } derive_builder = "0.20"