Cargo.toml: use only major version dependencies..
... | ... | @@ -13,7 +13,7 @@ publish = false |
build = "build.rs" | ||
[dependencies] | ||
petgraph = {version="0.6.3", features = ["serde-1"]} # the graph library | ||
petgraph = {version="0", features = ["serde-1"]} # the graph library | ||
uom = "0" | ||
serde = { version="1" } | ||
serde_derive = "1" | ||
... | ... | @@ -29,10 +29,10 @@ plotters="0" |
approx = "0" # assert macros for comparison of floats with tolerance | ||
clap = { version = "4", features = ["derive"] } # command line argument parser | ||
rprompt = "2.0" | ||
strum = { version = "0.25", features = ["derive"] } | ||
strum = { version = "0", features = ["derive"] } | ||
chrono = "0" | ||
[build-dependencies] | ||
# All features enabled | ||
vergen = { version = "8.2", features = ["git", "gitcl"] } | ||
vergen = { version = "8", features = ["git", "gitcl"] } |
Please register or sign in to comment