wit-bindgen-core
Advanced tools
| { | ||
| "git": { | ||
| "sha1": "0c39eee9f23d0530ed81bdf68bdd91fcc09ae08f" | ||
| "sha1": "3dfc82a753ac7e514802a618ddedb24dd51048fe" | ||
| }, | ||
| "path_in_vcs": "crates/core" | ||
| } |
+1
-1
@@ -309,3 +309,3 @@ # This file is automatically @generated by Cargo. | ||
| name = "wit-bindgen-core" | ||
| version = "0.51.0" | ||
| version = "0.52.0" | ||
| dependencies = [ | ||
@@ -312,0 +312,0 @@ "anyhow", |
+1
-1
@@ -16,3 +16,3 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO | ||
| name = "wit-bindgen-core" | ||
| version = "0.51.0" | ||
| version = "0.52.0" | ||
| authors = ["Alex Crichton <alex@alexcrichton.com>"] | ||
@@ -19,0 +19,0 @@ build = false |
+4
-1
@@ -199,2 +199,3 @@ use std::fmt::Write; | ||
| fn anonymous_type_list(&mut self, id: TypeId, ty: &Type, docs: &Docs); | ||
| fn anonymous_type_fixed_length_list(&mut self, id: TypeId, ty: &Type, size: u32, docs: &Docs); | ||
| fn anonymous_type_future(&mut self, id: TypeId, ty: &Option<Type>, docs: &Docs); | ||
@@ -222,3 +223,5 @@ fn anonymous_type_stream(&mut self, id: TypeId, ty: &Option<Type>, docs: &Docs); | ||
| TypeDefKind::Handle(handle) => self.anonymous_type_handle(id, handle, &ty.docs), | ||
| TypeDefKind::FixedSizeList(..) => todo!(), | ||
| TypeDefKind::FixedSizeList(t, size) => { | ||
| self.anonymous_type_fixed_length_list(id, t, *size, &ty.docs) | ||
| } | ||
| TypeDefKind::Map(..) => todo!(), | ||
@@ -225,0 +228,0 @@ TypeDefKind::Unknown => unreachable!(), |
+3
-1
@@ -206,3 +206,5 @@ use std::collections::HashMap; | ||
| } | ||
| TypeDefKind::FixedSizeList(..) => todo!(), | ||
| TypeDefKind::FixedSizeList(ty, _) => { | ||
| info = self.type_info(resolve, ty); | ||
| } | ||
| TypeDefKind::Map(..) => todo!(), | ||
@@ -209,0 +211,0 @@ TypeDefKind::Unknown => unreachable!(), |
Sorry, the diff of this file is too big to display