├── .gitattributes ├── .gitignore ├── Cargo.toml ├── README.md ├── encoding_utf8.min.js ├── replace.js ├── src └── lib.rs └── wasm-bindgen-test ├── app.js ├── app.json ├── app.wxss ├── pages ├── index │ ├── hello.js │ ├── hello.wasm │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss └── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── project.config.json ├── project.private.config.json ├── sitemap.json └── utils └── util.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/README.md -------------------------------------------------------------------------------- /encoding_utf8.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/encoding_utf8.min.js -------------------------------------------------------------------------------- /replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/replace.js -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/src/lib.rs -------------------------------------------------------------------------------- /wasm-bindgen-test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/app.js -------------------------------------------------------------------------------- /wasm-bindgen-test/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/app.json -------------------------------------------------------------------------------- /wasm-bindgen-test/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/app.wxss -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/index/hello.js -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/index/hello.wasm -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/index/index.js -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/index/index.wxml -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/index/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/logs/logs.js -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/logs/logs.wxml -------------------------------------------------------------------------------- /wasm-bindgen-test/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/pages/logs/logs.wxss -------------------------------------------------------------------------------- /wasm-bindgen-test/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/project.config.json -------------------------------------------------------------------------------- /wasm-bindgen-test/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/project.private.config.json -------------------------------------------------------------------------------- /wasm-bindgen-test/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/sitemap.json -------------------------------------------------------------------------------- /wasm-bindgen-test/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planet0104/wx-wasm-bindgen/HEAD/wasm-bindgen-test/utils/util.js --------------------------------------------------------------------------------