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