├── .gitignore ├── .travis.yml ├── CargoWebAsset.js ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── ci.sh ├── example ├── example-crate │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── index.html ├── main.js └── package.json ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/.travis.yml -------------------------------------------------------------------------------- /CargoWebAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/CargoWebAsset.js -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/README.md -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/ci.sh -------------------------------------------------------------------------------- /example/example-crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/example/example-crate/Cargo.toml -------------------------------------------------------------------------------- /example/example-crate/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/example/example-crate/src/main.rs -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/example/main.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koute/parcel-plugin-cargo-web/HEAD/test.js --------------------------------------------------------------------------------