Skip to content

Commit

Permalink
fix build on minimal versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Toru3 committed Oct 20, 2024
1 parent 38b6d7f commit 8927902
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ exclude = ["book/*"]
anes = "0.1.4"
criterion-plot = { path = "plot", version = "0.5.0" }
itertools = "0.13"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde = { version = "1.0.100", features = ["derive"] }
serde_json = "1.0.100"
ciborium = "0.2.0"
clap = { version = "=4.4.9", default-features = false, features = ["std", "help"] }
walkdir = "2.3"
tinytemplate = "1.1"
cast = "0.3"
num-traits = { version = "0.2", default-features = false, features = ["std"] }
oorandom = "11.1"
regex = { version = "1.5", default-features = false, features = ["std"] }
regex = { version = "1.5.1", default-features = false, features = ["std"] }

# Optional dependencies
rayon = { version = "1.3", optional = true }
Expand All @@ -45,7 +45,7 @@ tokio = { version = "1.0", default-features = false, features = [
async-std = { version = "1.9", optional = true }

[dependencies.plotters]
version = "^0.3.1"
version = "^0.3.2"
optional = true
default-features = false
features = ["svg_backend", "area_series", "line_series"]
Expand Down

0 comments on commit 8927902

Please sign in to comment.