From f1b163040ccef902809fa6d5e8c70a687d9917af Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 2 Jan 2026 14:53:42 +0100 Subject: [PATCH] feat: bump version to 0.1.7 and add futures-core and futures-util dependencies --- Cargo.lock | 4 +++- Cargo.toml | 9 ++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f49365..a81c197 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1775,7 +1775,7 @@ dependencies = [ [[package]] name = "k-core" -version = "0.1.6" +version = "0.1.7" dependencies = [ "anyhow", "async-nats", @@ -1783,6 +1783,8 @@ dependencies = [ "axum 0.8.8", "chrono", "fastembed", + "futures-core", + "futures-util", "qdrant-client", "serde", "sqlx", diff --git a/Cargo.toml b/Cargo.toml index 2e0dc44..c223c3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k-core" -version = "0.1.6" +version = "0.1.7" edition = "2024" [features] @@ -13,7 +13,7 @@ auth = ["dep:tower-sessions"] sessions-db = ["auth", "dep:tower-sessions-sqlx-store"] ai = ["dep:fastembed", "dep:qdrant-client"] broker = [] -broker-nats = ["broker", "dep:async-nats"] +broker-nats = ["broker", "dep:async-nats", "dep:futures-util", "dep:futures-core"] http = ["dep:axum", "dep:tower", "dep:tower-http", "dep:time", "logging"] [dependencies] @@ -60,4 +60,7 @@ async-nats = { version = "0.45", optional = true } axum = { version = "0.8.8", features = ["macros"], optional = true } tower = { version = "0.5.2", optional = true } tower-http = { version = "0.6.2", features = ["cors", "trace"], optional = true} -time = { version = "0.3", optional = true } \ No newline at end of file +time = { version = "0.3", optional = true } + +futures-util = { version = "0.3", optional = true } +futures-core = {version = "0.3", optional = true } \ No newline at end of file