Skip to content

Commit

Permalink
fix: remove unneeded spin-core dep from key-value-azure factor
Browse files Browse the repository at this point in the history
Signed-off-by: Kate Goldenring <kate.goldenring@fermyon.com>
  • Loading branch information
kate-goldenring committed Feb 24, 2025
1 parent d680c89 commit 959075d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/key-value-azure/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ azure_identity = { git = "https://github.com/azure/azure-sdk-for-rust.git", rev
azure_core = { git = "https://github.com/azure/azure-sdk-for-rust.git", rev = "8c4caa251c3903d5eae848b41bb1d02a4d65231c" }
futures = { workspace = true }
serde = { workspace = true }
spin-core = { path = "../core" }
async-trait = { workspace = true }
spin-factor-key-value = { path = "../factor-key-value" }
reqwest = { version = "0.12", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion crates/key-value-azure/src/store.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use anyhow::{Context, Result};
use async_trait::async_trait;
use azure_data_cosmos::{
prelude::{
AuthorizationToken, CollectionClient, CosmosClient, CosmosClientBuilder, Operation, Query,
Expand All @@ -7,7 +8,6 @@ use azure_data_cosmos::{
};
use futures::StreamExt;
use serde::{Deserialize, Serialize};
use spin_core::async_trait;
use spin_factor_key_value::{log_cas_error, log_error, Cas, Error, Store, StoreManager, SwapError};
use std::sync::{Arc, Mutex};

Expand Down

0 comments on commit 959075d

Please sign in to comment.