diff --git a/crates/algos/Cargo.toml b/crates/algos/Cargo.toml index badcd75..206ae06 100644 --- a/crates/algos/Cargo.toml +++ b/crates/algos/Cargo.toml @@ -15,7 +15,7 @@ license.workspace = true ahash.workspace = true atomic_float.workspace = true clap = { workspace = true, optional = true } -graph_builder = { path = "../builder", version = "^0.3.1" } +graph_builder = { path = "../builder", version = "^0.4.0" } log.workspace = true num-format.workspace = true nanorand.workspace = true @@ -24,6 +24,6 @@ serde = { workspace = true, optional = true } [dev-dependencies] env_logger.workspace = true -graph_builder = { path = "../builder", version = "^0.3.1", features = ["gdl"] } +graph_builder = { path = "../builder", version = "^0.4.0", features = ["gdl"] } log.workspace = true polars.workspace = true diff --git a/crates/bench_util/Cargo.toml b/crates/bench_util/Cargo.toml index 07aaa08..3317d2d 100644 --- a/crates/bench_util/Cargo.toml +++ b/crates/bench_util/Cargo.toml @@ -14,7 +14,7 @@ license.workspace = true async-compression.workspace = true directories.workspace = true futures.workspace = true -graph_builder = { path = "../builder", version = "^0.3.1", features = ["dotgraph", "gdl"] } +graph_builder = { path = "../builder", version = "^0.4.0", features = ["dotgraph", "gdl"] } rand.workspace = true reqwest.workspace = true tokio-tar.workspace = true diff --git a/crates/builder/Cargo.toml b/crates/builder/Cargo.toml index 0cdca81..7eed702 100644 --- a/crates/builder/Cargo.toml +++ b/crates/builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graph_builder" -version = "0.3.1" +version = "0.4.0" description = "A building block for high-performant graph algorithms." keywords = ["graph", "builder", "csr", "algorithms"] authors.workspace = true