diff --git a/rust/Cargo.lock b/rust/Cargo.lock index d3c912e7b..7d51b6df4 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2033,9 +2033,9 @@ dependencies = [ [[package]] name = "kittycad-modeling-cmds" -version = "0.2.107" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb129c1f4906a76e3518e58f61968f16cb56f1279366415d2bae6059aa68fce8" +checksum = "58f5fbcfb0fe3384592829cd1a5109aa45fb6a3ffc5ff2d164d2fd528ffd4641" dependencies = [ "anyhow", "chrono", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a2909ba41..30ade99f4 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -36,7 +36,7 @@ dashmap = { version = "6.1.0" } http = "1" indexmap = "2.7.0" kittycad = { version = "0.3.36", default-features = false, features = ["js", "requests"] } -kittycad-modeling-cmds = { version = "0.2.107", features = ["ts-rs", "websocket"] } +kittycad-modeling-cmds = { version = "0.2.108", features = ["ts-rs", "websocket"] } lazy_static = "1.5.0" miette = "7.5.0" pyo3 = { version = "0.24.0" } diff --git a/rust/kcl-lib/src/std/chamfer.rs b/rust/kcl-lib/src/std/chamfer.rs index 7d4cdf1bb..43e945556 100644 --- a/rust/kcl-lib/src/std/chamfer.rs +++ b/rust/kcl-lib/src/std/chamfer.rs @@ -138,8 +138,6 @@ async fn inner_chamfer( radius: LengthUnit(length), tolerance: LengthUnit(DEFAULT_TOLERANCE), // We can let the user set this in the future. cut_type: CutType::Chamfer, - // We make this a none so that we can remove it in the future. - face_id: None, }), ) .await?; diff --git a/rust/kcl-lib/src/std/fillet.rs b/rust/kcl-lib/src/std/fillet.rs index 7e67eb09d..c77dbbf1f 100644 --- a/rust/kcl-lib/src/std/fillet.rs +++ b/rust/kcl-lib/src/std/fillet.rs @@ -167,8 +167,6 @@ async fn inner_fillet( radius: LengthUnit(radius), tolerance: LengthUnit(tolerance.unwrap_or(DEFAULT_TOLERANCE)), cut_type: CutType::Fillet, - // We make this a none so that we can remove it in the future. - face_id: None, }), ) .await?;