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 build
Go to the rollup folder and then issue the following commands:
yarn
yarn build
As 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.toml
contains 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.html
points to the web page;- The
rollup
folder contains the application bundled with rollup; - The
src
folder contains the Rust code; - The
static
folder contains anindex.html
file which loads theindex.js
file; - The
webpack
folder contains the application bundled with webpack.