Bump kittycad from 0.2.23 to 0.2.25 in /src/wasm-lib (#418)
* Bump kittycad from 0.2.23 to 0.2.25 in /src/wasm-lib Bumps [kittycad](https://github.com/KittyCAD/kittycad.rs) from 0.2.23 to 0.2.25. - [Release notes](https://github.com/KittyCAD/kittycad.rs/releases) - [Commits](https://github.com/KittyCAD/kittycad.rs/compare/v0.2.23...v0.2.25) --- updated-dependencies: - dependency-name: kittycad dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Handle metricsrequest --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adam Chalmers <adam.s.chalmers@gmail.com>
This commit is contained in:
		
							
								
								
									
										9
									
								
								src/wasm-lib/.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/wasm-lib/.vscode/settings.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
{
 | 
			
		||||
  "rust-analyzer.linkedProjects": [
 | 
			
		||||
    "./kcl/Cargo.toml",
 | 
			
		||||
    "./kcl/Cargo.toml",
 | 
			
		||||
    "./kcl/Cargo.toml",
 | 
			
		||||
    "./kcl/Cargo.toml",
 | 
			
		||||
    "./kcl/Cargo.toml"
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										4
									
								
								src/wasm-lib/Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										4
									
								
								src/wasm-lib/Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -1126,9 +1126,9 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "kittycad"
 | 
			
		||||
version = "0.2.23"
 | 
			
		||||
version = "0.2.25"
 | 
			
		||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
			
		||||
checksum = "b8b33e5df8f82b97e5f5af94ff1400ae37449d0f5f1bb79acedf17cf2193680f"
 | 
			
		||||
checksum = "d9cf962b1e81a0b4eb923a727e761b40672cbacc7f5f0b75e13579d346352bc7"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "anyhow",
 | 
			
		||||
 "base64 0.21.2",
 | 
			
		||||
 | 
			
		||||
@ -11,7 +11,7 @@ crate-type = ["cdylib"]
 | 
			
		||||
bson = { version = "2.7.0", features = ["uuid-1", "chrono"] }
 | 
			
		||||
gloo-utils = "0.2.0"
 | 
			
		||||
kcl-lib = { path = "kcl" }
 | 
			
		||||
kittycad = { version = "0.2.23", default-features = false, features = ["js"] }
 | 
			
		||||
kittycad = { version = "0.2.25", default-features = false, features = ["js"] }
 | 
			
		||||
serde_json = "1.0.93"
 | 
			
		||||
wasm-bindgen = "0.2.87"
 | 
			
		||||
wasm-bindgen-futures = "0.4.37"
 | 
			
		||||
 | 
			
		||||
@ -13,7 +13,7 @@ clap = { version = "4.4.2", features = ["cargo", "derive", "env", "unicode"] }
 | 
			
		||||
dashmap = "5.5.3"
 | 
			
		||||
derive-docs = { version = "0.1.3" }
 | 
			
		||||
#derive-docs = { path = "../derive-docs" }
 | 
			
		||||
kittycad = { version = "0.2.23", default-features = false, features = ["js"] }
 | 
			
		||||
kittycad = { version = "0.2.25", default-features = false, features = ["js"] }
 | 
			
		||||
lazy_static = "1.4.0"
 | 
			
		||||
parse-display = "0.8.2"
 | 
			
		||||
regex = "1.7.1"
 | 
			
		||||
 | 
			
		||||
@ -87,6 +87,9 @@ impl EngineConnection {
 | 
			
		||||
 | 
			
		||||
                        if let Some(msg) = ws_resp.resp {
 | 
			
		||||
                            match msg {
 | 
			
		||||
                                OkWebSocketResponseData::MetricsRequest {} => {
 | 
			
		||||
                                    // @paultag todo
 | 
			
		||||
                                }
 | 
			
		||||
                                OkWebSocketResponseData::IceServerInfo { ice_servers } => {
 | 
			
		||||
                                    println!("got ice server info: {:?}", ice_servers);
 | 
			
		||||
                                }
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user