diff --git a/crates/algos/Cargo.toml b/crates/algos/Cargo.toml index 206ae06..dc9f826 100644 --- a/crates/algos/Cargo.toml +++ b/crates/algos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graph" -version = "0.3.0" +version = "0.3.1" 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 3697203..27074c0 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.0" +version = "^0.3.1" features = ["clap"] [dependencies.kommandozeile] diff --git a/crates/mate/Cargo.toml b/crates/mate/Cargo.toml index d157883..120b09f 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.0" } +graph = { path = "../algos", version = "^0.3.1" } log.workspace = true numpy.workspace = true pyo3-log.workspace = true diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index aa94156..0df531d 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.0", features = ["serde"] } +graph = { path = "../algos", version = "^0.3.1", features = ["serde"] } itertools.workspace = true log.workspace = true parking_lot.workspace = true