-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
442 additions
and
169 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "retro" | ||
name = "protean" | ||
version = "0.1.0" | ||
authors = ["Sean Toner <[email protected]>"] | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
//! Represents a Character in protean |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
retro/src/engine/probability.rs → protean/src/engine/probability.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/bin/zsh | ||
# | ||
# This script will install some useful rust dev tools for you | ||
# - rustup check | ||
# - starship prompt editor | ||
# - nushell | ||
|
||
|
||
|
||
# Check version OS and install nushell | ||
os=`uname` | ||
echo "os is $os" | ||
#if [ $os == "Darwin" ]; then | ||
# brew install nushell | ||
#elif [ $os == "Linux" ]; then | ||
# Check if apt exists | ||
# packman=`which apt` | ||
# if [ $? != 0 ]; then | ||
# sudo dnf install libxcb openssl-devel libX11-devel | ||
# else | ||
sudo apt install build-essential pkg-config libssl-dev cmake | ||
cargo install nu --features=extra | ||
#fi | ||
|
||
# install mononoki nerd font | ||
#if [ $os == "Darwin" ]; then | ||
# brew tap homebrew/cask-fonts && brew install --cask font-mononoki-nerd-font | ||
#else | ||
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Mononoki.zip | ||
unzip Mononoki.zip -e ~/.local/share/fonts | ||
#fi | ||
|
||
# install starship rs | ||
cargo install starship --locked | ||
nu ./starship.nu | ||
|
||
# install git-delta | ||
cargo install git-delta | ||
|
||
# install helix | ||
#git clone https://github.com/helix-editor/helix | ||
#cd helix | ||
#cargo install --path helix-term | ||
#mkdir ~/.config/helix | ||
#ln -s $PWD/runtime ~/.config/helix/runtime | ||
#cd - | ||
|
||
# install misc rust tools | ||
cargo install cargo-binstall | ||
cargo install cargo-update | ||
cargo install cargo-udeps | ||
cargo install cargo-bloat | ||
cargo install cargo-audit | ||
cargo install cargo-semver-checks --locked | ||
cargo install topgrade | ||
cargo install ripgrep | ||
cargo install procs | ||
cargo install bottom | ||
cargo install mdbook | ||
cargo install fd-find | ||
cargo install --locked broot | ||
cargo install cargo-wasi | ||
cargo install cargo-editor | ||
cargo install evcxr_jupyter | ||
cargo install evcxr_repl | ||
cargo binstall nextest | ||
cargo install --locked tokio-console |
Oops, something went wrong.