Bump kittycad (#1262)

This commit is contained in:
Adam Chalmers
2024-01-02 13:13:41 -06:00
committed by GitHub
parent 519e6d74ac
commit 82905caad6
3 changed files with 5 additions and 7 deletions

View File

@ -1480,9 +1480,9 @@ dependencies = [
[[package]] [[package]]
name = "kittycad" name = "kittycad"
version = "0.2.43" version = "0.2.45"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ab6de34cc4ab06519d65a613d4030ade14036ac619d8fee5ce6f35d1766c11" checksum = "1fbc350639638b46123619b9d1286b94efba284d9c99e30025eba34fb989e596"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View File

@ -57,7 +57,7 @@ members = [
] ]
[workspace.dependencies] [workspace.dependencies]
kittycad = { version = "0.2.43", default-features = false, features = ["js"] } kittycad = { version = "0.2.45", default-features = false, features = ["js"] }
[[test]] [[test]]
name = "executor" name = "executor"

View File

@ -1031,10 +1031,8 @@ async fn inner_arc(data: ArcData, sketch_group: Box<SketchGroup>, args: Args) ->
ModelingCmd::ExtendPath { ModelingCmd::ExtendPath {
path: sketch_group.id, path: sketch_group.id,
segment: kittycad::types::PathSegment::Arc { segment: kittycad::types::PathSegment::Arc {
angle_start: angle_start.degrees(), start: angle_start,
angle_end: angle_end.degrees(), end: angle_end,
start: Some(angle_start),
end: Some(angle_end),
center: center.into(), center: center.into(),
radius, radius,
relative: false, relative: false,