├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── package.json └── src ├── index.js └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/coin-toss-me-daddy/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/coin-toss-me-daddy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/coin-toss-me-daddy/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/coin-toss-me-daddy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePrimeagen/coin-toss-me-daddy/HEAD/src/main.rs --------------------------------------------------------------------------------