├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── README.zh_CN.md ├── npm ├── .gitignore ├── README.md ├── binary.js ├── install.js ├── package.json └── run.js ├── rsw.png └── src ├── config.rs ├── core ├── build.rs ├── clean.rs ├── cli.rs ├── create.rs ├── error.rs ├── info.rs ├── init.rs ├── link.rs ├── mod.rs └── watch.rs ├── lib.rs ├── main.rs ├── template ├── mod.rs ├── rsw.toml ├── rsw_cargo.toml ├── rsw_lib.rs └── rsw_readme.md └── utils.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/README.md -------------------------------------------------------------------------------- /README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/README.zh_CN.md -------------------------------------------------------------------------------- /npm/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/npm/README.md -------------------------------------------------------------------------------- /npm/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/npm/binary.js -------------------------------------------------------------------------------- /npm/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/npm/install.js -------------------------------------------------------------------------------- /npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/npm/package.json -------------------------------------------------------------------------------- /npm/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/npm/run.js -------------------------------------------------------------------------------- /rsw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/rsw.png -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/core/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/build.rs -------------------------------------------------------------------------------- /src/core/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/clean.rs -------------------------------------------------------------------------------- /src/core/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/cli.rs -------------------------------------------------------------------------------- /src/core/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/create.rs -------------------------------------------------------------------------------- /src/core/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/error.rs -------------------------------------------------------------------------------- /src/core/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/info.rs -------------------------------------------------------------------------------- /src/core/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/init.rs -------------------------------------------------------------------------------- /src/core/link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/link.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/mod.rs -------------------------------------------------------------------------------- /src/core/watch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/core/watch.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/template/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/template/mod.rs -------------------------------------------------------------------------------- /src/template/rsw.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/template/rsw.toml -------------------------------------------------------------------------------- /src/template/rsw_cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/template/rsw_cargo.toml -------------------------------------------------------------------------------- /src/template/rsw_lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/template/rsw_lib.rs -------------------------------------------------------------------------------- /src/template/rsw_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/template/rsw_readme.md -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwasm/rsw-rs/HEAD/src/utils.rs --------------------------------------------------------------------------------