gitextract_5xr7nxho/ ├── .github/ │ └── workflows/ │ ├── clippy.yml │ ├── mean_bean_ci.yml │ ├── mean_bean_deploy.yml │ └── rustfmt.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.txt ├── Cargo.toml ├── LICENSE ├── README.md ├── ci/ │ ├── before_deploy.sh │ ├── build.bash │ ├── common.bash │ ├── install.sh │ ├── script.sh │ ├── set_rust_version.bash │ └── test.bash ├── dev.bash ├── dev.fish ├── dev.zsh ├── mcfly.bash ├── mcfly.fish ├── mcfly.ps1 ├── mcfly.zsh ├── pkg/ │ └── brew/ │ └── mcfly.rb └── src/ ├── cli.rs ├── command_input.rs ├── dumper.rs ├── fake_typer.rs ├── fixed_length_grapheme_string.rs ├── history/ │ ├── db_extensions.rs │ ├── history.rs │ ├── mod.rs │ └── schema.rs ├── history_cleaner.rs ├── init.rs ├── interface.rs ├── lib.rs ├── main.rs ├── network.rs ├── node.rs ├── path_update_helpers.rs ├── settings.rs ├── shell_history.rs ├── simplified_command.rs ├── stats_generator.rs ├── time.rs ├── trainer.rs ├── training_cache.rs └── training_sample_generator.rs