├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── demos ├── cli_demo.gif └── fun_stuff.gif ├── examples ├── colored_text.rs ├── fun_stuff.rs └── simple.rs └── src ├── bin └── snailshell.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/README.md -------------------------------------------------------------------------------- /demos/cli_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/demos/cli_demo.gif -------------------------------------------------------------------------------- /demos/fun_stuff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/demos/fun_stuff.gif -------------------------------------------------------------------------------- /examples/colored_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/examples/colored_text.rs -------------------------------------------------------------------------------- /examples/fun_stuff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/examples/fun_stuff.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /src/bin/snailshell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/src/bin/snailshell.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElfWitch/snailshell/HEAD/src/lib.rs --------------------------------------------------------------------------------