Upgrade to Rust 1.87 (#7346)

I ignored some new clippy lints about large differences between enum variants.
We can always revisit these later (the compiler suggests boxing them so
that the enum variants are similar size)
This commit is contained in:
Adam Chalmers
2025-06-03 16:32:24 -05:00
committed by GitHub
parent b47b9c9613
commit ce42966f2b
6 changed files with 7 additions and 3 deletions

View File

@ -21,6 +21,7 @@ use crate::{
#[derive(Debug, Clone, Serialize, PartialEq, ts_rs::TS, JsonSchema)]
#[ts(export)]
#[serde(untagged)]
#[allow(clippy::large_enum_variant)]
pub enum SweepPath {
Sketch(Sketch),
Helix(Box<Helix>),