├── .github └── worfklows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE.md ├── LICENSE-MIT.md ├── README.md ├── RELEASES.md ├── examples └── super-sheep-counter-2000.rs └── src ├── hierarchy.rs ├── lib.rs ├── maybe.rs └── template.rs /.github/worfklows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/.github/worfklows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/LICENSE-APACHE.md -------------------------------------------------------------------------------- /LICENSE-MIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/LICENSE-MIT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/RELEASES.md -------------------------------------------------------------------------------- /examples/super-sheep-counter-2000.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/examples/super-sheep-counter-2000.rs -------------------------------------------------------------------------------- /src/hierarchy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/src/hierarchy.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/maybe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/src/maybe.rs -------------------------------------------------------------------------------- /src/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leafwing-Studios/i-cant-believe-its-not-bsn/HEAD/src/template.rs --------------------------------------------------------------------------------