├── .gitignore ├── .travis.yml ├── 000-template.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── book.toml ├── generate-book.sh └── text ├── 001-the-rfc-process.md ├── 002-wasm-bindgen-inheritance-casting.md ├── 005-structural-and-deref.md ├── 006-local-js-dependencies.md ├── 007-2019-roadmap.md └── 008-npm-dependencies.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | book/ 3 | src/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/.travis.yml -------------------------------------------------------------------------------- /000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/000-template.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/book.toml -------------------------------------------------------------------------------- /generate-book.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/generate-book.sh -------------------------------------------------------------------------------- /text/001-the-rfc-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/001-the-rfc-process.md -------------------------------------------------------------------------------- /text/002-wasm-bindgen-inheritance-casting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/002-wasm-bindgen-inheritance-casting.md -------------------------------------------------------------------------------- /text/005-structural-and-deref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/005-structural-and-deref.md -------------------------------------------------------------------------------- /text/006-local-js-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/006-local-js-dependencies.md -------------------------------------------------------------------------------- /text/007-2019-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/007-2019-roadmap.md -------------------------------------------------------------------------------- /text/008-npm-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustwasm/rfcs/HEAD/text/008-npm-dependencies.md --------------------------------------------------------------------------------