File tree Expand file tree Collapse file tree 3 files changed +20
-15
lines changed
crates/js-component-bindgen Expand file tree Collapse file tree 3 files changed +20
-15
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " js-component-bindgen"
3- authors = [
4- " Alex Crichton <[email protected] >" ,
5- " Guy Bedford <[email protected] >" ,
6- ]
7- description = " JS component bindgen for transpiling WebAssembly components into JavaScript"
3+ version = " 1.10.0"
84license = " Apache-2.0 WITH LLVM-exception"
95categories = [" wasm" ]
106keywords = [" webassembly" , " wasm" ]
117homepage = " https://github.com/bytecodealliance/jco/tree/main/crates/js-component-bindgen"
128repository = " https://github.com/bytecodealliance/jco"
13- version = { workspace = true }
9+ authors = [
10+ " Alex Crichton <[email protected] >" ,
11+ " Guy Bedford <[email protected] >" ,
12+ ]
13+ description = " JS component bindgen for transpiling WebAssembly components into JavaScript"
14+
1415edition = { workspace = true }
1516
1617[lib ]
@@ -20,6 +21,9 @@ crate-type = ["lib"]
2021default = [" transpile-bindgen" ]
2122transpile-bindgen = []
2223
24+ [package .metadata .docs .rs ]
25+ all-features = true
26+
2327[dependencies ]
2428anyhow = { workspace = true }
2529base64 = { workspace = true , features = [ " alloc" ] }
Original file line number Diff line number Diff line change @@ -43,24 +43,24 @@ pub enum Intrinsic {
4343 SymbolDispose ,
4444 ThrowInvalidBool ,
4545 ThrowUninitialized ,
46- /// Implementation of https://tc39.es/ecma262/#sec-tobigint64.
46+ /// Implementation of < https://tc39.es/ecma262/#sec-tobigint64>
4747 ToBigInt64 ,
48- /// Implementation of https://tc39.es/ecma262/#sec-tobiguint64.
48+ /// Implementation of < https://tc39.es/ecma262/#sec-tobiguint64>
4949 ToBigUint64 ,
50- /// Implementation of https://tc39.es/ecma262/#sec-toint16.
50+ /// Implementation of < https://tc39.es/ecma262/#sec-toint16>
5151 ToInt16 ,
52- /// Implementation of https://tc39.es/ecma262/#sec-toint32.
52+ /// Implementation of < https://tc39.es/ecma262/#sec-toint32>
5353 ToInt32 ,
54- /// Implementation of https://tc39.es/ecma262/#sec-toint8.
54+ /// Implementation of < https://tc39.es/ecma262/#sec-toint8>
5555 ToInt8 ,
5656 ToResultString ,
57- /// Implementation of https://tc39.es/ecma262/#sec-tostring.
57+ /// Implementation of < https://tc39.es/ecma262/#sec-tostring>
5858 ToString ,
59- /// Implementation of https://tc39.es/ecma262/#sec-touint16.
59+ /// Implementation of < https://tc39.es/ecma262/#sec-touint16>
6060 ToUint16 ,
61- /// Implementation of https://tc39.es/ecma262/#sec-touint32.
61+ /// Implementation of < https://tc39.es/ecma262/#sec-touint32>
6262 ToUint32 ,
63- /// Implementation of https://tc39.es/ecma262/#sec-touint8.
63+ /// Implementation of < https://tc39.es/ecma262/#sec-touint8>
6464 ToUint8 ,
6565 Utf16Decoder ,
6666 Utf16Encode ,
Original file line number Diff line number Diff line change 1+ #![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
12mod core;
23mod files;
34mod transpile_bindgen;
You can’t perform that action at this time.
0 commit comments