From 7de6b8c0737f9a7417ec394f66745081f6ce034e Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 19 Dec 2024 08:35:58 +0000 Subject: [PATCH] Release graph v0.3.2 This release addresses RUSTSEC-2024-0379 --- crates/algos/Cargo.toml | 2 +- crates/app/Cargo.toml | 2 +- crates/mate/Cargo.toml | 2 +- crates/server/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/algos/Cargo.toml b/crates/algos/Cargo.toml index dc9f826..94d3a25 100644 --- a/crates/algos/Cargo.toml +++ b/crates/algos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graph" -version = "0.3.1" +version = "0.3.2" description = "A library of high-performant graph algorithms." keywords = ["graph", "algorithms", "parallel"] authors.workspace = true diff --git a/crates/app/Cargo.toml b/crates/app/Cargo.toml index 27074c0..553c024 100644 --- a/crates/app/Cargo.toml +++ b/crates/app/Cargo.toml @@ -23,7 +23,7 @@ polars.workspace = true [dependencies.graph] path = "../algos" -version = "^0.3.1" +version = "^0.3.2" features = ["clap"] [dependencies.kommandozeile] diff --git a/crates/mate/Cargo.toml b/crates/mate/Cargo.toml index 120b09f..6eab6a2 100644 --- a/crates/mate/Cargo.toml +++ b/crates/mate/Cargo.toml @@ -21,7 +21,7 @@ default = [] extension-module = ["pyo3/extension-module"] [dependencies] -graph = { path = "../algos", version = "^0.3.1" } +graph = { path = "../algos", version = "^0.3.2" } log.workspace = true numpy.workspace = true pyo3-log.workspace = true diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 0df531d..d589a8d 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -19,7 +19,7 @@ async-trait.workspace = true clap.workspace = true env_logger.workspace = true futures.workspace = true -graph = { path = "../algos", version = "^0.3.1", features = ["serde"] } +graph = { path = "../algos", version = "^0.3.2", features = ["serde"] } itertools.workspace = true log.workspace = true parking_lot.workspace = true