Compare commits

...

1 Commits

Author SHA1 Message Date
cc145a267c WIP: Do we need to derive JsonSchema? 2024-09-24 12:30:50 -05:00
2 changed files with 18 additions and 9 deletions

View File

@ -1526,9 +1526,8 @@ dependencies = [
[[package]] [[package]]
name = "kittycad-modeling-cmds" name = "kittycad-modeling-cmds"
version = "0.2.61" version = "0.2.62"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/KittyCAD/modeling-api?branch=achalmers/no-more-jsonschema#a253330a9cd656afbc5ee04490acca5ea5337af0"
checksum = "5128ba683e849388cac4214b65911c343842d559bec10827575c840a47733786"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",
@ -1552,8 +1551,18 @@ dependencies = [
[[package]] [[package]]
name = "kittycad-modeling-cmds-macros" name = "kittycad-modeling-cmds-macros"
version = "0.1.9" version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/KittyCAD/modeling-api?branch=achalmers/no-more-jsonschema#a253330a9cd656afbc5ee04490acca5ea5337af0"
checksum = "e0cdc505a33bfffb87c317435ec41ced8f73474217cf30db685e479bf289757e" dependencies = [
"kittycad-modeling-cmds-macros-impl",
"proc-macro2",
"quote",
"syn 2.0.77",
]
[[package]]
name = "kittycad-modeling-cmds-macros-impl"
version = "0.1.9"
source = "git+https://github.com/KittyCAD/modeling-api?branch=achalmers/no-more-jsonschema#a253330a9cd656afbc5ee04490acca5ea5337af0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -73,7 +73,7 @@ members = [
http = "0.2.12" http = "0.2.12"
kittycad = { version = "0.3.20", default-features = false, features = ["js", "requests"] } kittycad = { version = "0.3.20", default-features = false, features = ["js", "requests"] }
kittycad-modeling-session = "0.1.4" kittycad-modeling-session = "0.1.4"
kittycad-modeling-cmds = { version = "0.2.61", features = ["websocket"] } kittycad-modeling-cmds = { version = "0.2.62", features = ["websocket"] }
[[test]] [[test]]
name = "executor" name = "executor"
@ -84,6 +84,6 @@ name = "modify"
path = "tests/modify/main.rs" path = "tests/modify/main.rs"
# Example: how to point modeling-api at a different repo (e.g. a branch or a local clone) # Example: how to point modeling-api at a different repo (e.g. a branch or a local clone)
#[patch."https://github.com/KittyCAD/modeling-api"] [patch.crates-io]
#kittycad-modeling-cmds = { path = "../../../modeling-api/modeling-cmds" } kittycad-modeling-cmds = { git = "https://github.com/KittyCAD/modeling-api", branch = "achalmers/no-more-jsonschema" }
#kittycad-modeling-session = { path = "../../../modeling-api/modeling-session" }