gitextract_7ickrjy7/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── approve.yml │ ├── book.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASE_CHECKLIST.md ├── clippy.toml ├── docs/ │ ├── _installer/ │ │ ├── build-installer.rs │ │ ├── index.html │ │ ├── init.sh │ │ └── wasm-pack.js │ ├── _theme/ │ │ └── header.hbs │ ├── book.toml │ ├── browserconfig.xml │ ├── index.html │ ├── public/ │ │ └── custom.css │ ├── site.webmanifest │ └── src/ │ ├── SUMMARY.md │ ├── cargo-toml-configuration.md │ ├── commands/ │ │ ├── build.md │ │ ├── index.md │ │ ├── init.md │ │ ├── new.md │ │ ├── pack-and-publish.md │ │ └── test.md │ ├── contributing.md │ ├── introduction.md │ ├── prerequisites/ │ │ ├── considerations.md │ │ ├── index.md │ │ ├── non-rustup-setups.md │ │ └── npm.md │ ├── quickstart.md │ └── tutorials/ │ ├── hybrid-applications-with-webpack/ │ │ ├── getting-started.md │ │ ├── index.md │ │ └── using-your-library.md │ ├── index.md │ ├── npm-browser-packages/ │ │ ├── building-your-project.md │ │ ├── getting-started/ │ │ │ └── manual-setup.md │ │ ├── getting-started.md │ │ ├── index.md │ │ ├── packaging-and-publishing.md │ │ ├── template-deep-dive/ │ │ │ ├── building-your-project.md │ │ │ ├── cargo-toml.md │ │ │ ├── index.md │ │ │ ├── src-lib-rs.md │ │ │ ├── src-utils-rs.md │ │ │ ├── tests-web-rs.md │ │ │ └── wee_alloc.md │ │ ├── testing-your-project.md │ │ └── using-your-library.md │ └── standalone-wasm-binaries/ │ └── index.md ├── npm/ │ ├── .gitignore │ ├── README.md │ ├── binary.js │ ├── install.js │ ├── package.json │ └── run.js ├── src/ │ ├── bindgen.rs │ ├── build/ │ │ ├── mod.rs │ │ └── wasm_target.rs │ ├── cache.rs │ ├── child.rs │ ├── command/ │ │ ├── build.rs │ │ ├── generate.rs │ │ ├── login.rs │ │ ├── mod.rs │ │ ├── pack.rs │ │ ├── publish/ │ │ │ ├── access.rs │ │ │ └── mod.rs │ │ ├── test.rs │ │ └── utils.rs │ ├── emoji.rs │ ├── generate.rs │ ├── install/ │ │ ├── arch.rs │ │ ├── krate.rs │ │ ├── mod.rs │ │ ├── mode.rs │ │ ├── os.rs │ │ └── tool.rs │ ├── installer.rs │ ├── lib.rs │ ├── license.rs │ ├── lockfile.rs │ ├── main.rs │ ├── manifest/ │ │ ├── mod.rs │ │ └── npm/ │ │ ├── commonjs.rs │ │ ├── esmodules.rs │ │ ├── mod.rs │ │ ├── nomodules.rs │ │ └── repository.rs │ ├── npm.rs │ ├── progressbar.rs │ ├── readme.rs │ ├── stamps.rs │ ├── target.rs │ ├── test/ │ │ ├── mod.rs │ │ ├── webdriver/ │ │ │ ├── chromedriver.rs │ │ │ ├── geckodriver.rs │ │ │ └── safaridriver.rs │ │ └── webdriver.rs │ └── wasm_opt.rs └── tests/ └── all/ ├── build.rs ├── download.rs ├── generate.rs ├── license.rs ├── lockfile.rs ├── log_level.rs ├── main.rs ├── manifest.rs ├── readme.rs ├── stamps.rs ├── test.rs ├── utils/ │ ├── file.rs │ ├── fixture.rs │ ├── manifest.rs │ └── mod.rs ├── wasm_opt.rs └── webdriver.rs