Skip to content

Commit

Permalink
Merge #349
Browse files Browse the repository at this point in the history
349: Prevent dev dependencies from breaking tests and examples r=Ogeon a=Ogeon

Make it so examples build and CI can run with a couple of temporary fixes.

 * Pins `ron`, since they bumped the MSRV in 0.8.1.
 * Enables the `srd` feature for `clap`, since it's required in 3.2.25.

Fixes #348 


Co-authored-by: Erik Hedvall <erikwhedvall@gmail.com>
  • Loading branch information
bors[bot] and Ogeon authored Aug 21, 2023
2 parents 176b9ac + 6af00e5 commit c70d8a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions palette/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,14 @@ lazy_static = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
ron = "0.8.0"
ron = "=0.8.0" # Pinned due to MSRV mismatch
enterpolation = "0.2.0"
scad = "1.2.2" # For regression testing #283

[dev-dependencies.clap]
version = "3.2.23"
version = "3.2.25"
default-features = false
features = ["std"] # Required since 3.2.25

[dev-dependencies.criterion]
version = "0.4.0"
Expand Down

0 comments on commit c70d8a6

Please sign in to comment.