Web interface to generate password using Rust.
There are 3 ways to generate this web interface:
You can access one of those by clicking on this link.
Go to the webpack folder and then issue the following commands:
yarn
yarn buildGo to the rollup folder and then issue the following commands:
yarn
yarn buildAs of version 2, Parcel does not know what to do with Rust code. Latest version (2.5.0) does not still have any Rust transformers. See this issue.
Cargo.tomlcontains the standard Rust metadata. You put your Rust dependencies in here. You must change this file with your details (name, description, version, authors, categories);index.htmlpoints to the web page;- The
rollupfolder contains the application bundled with rollup; - The
srcfolder contains the Rust code; - The
staticfolder contains anindex.htmlfile which loads theindex.jsfile; - The
webpackfolder contains the application bundled with webpack.