├── .github └── workflows │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── crates ├── choose_classes │ ├── Cargo.toml │ └── src │ │ ├── bin │ │ ├── choose_classes.rs │ │ └── get_tokens.rs │ │ ├── lib.rs │ │ └── utils.rs └── get_grades │ ├── Cargo.toml │ └── src │ ├── bin │ ├── calc_gpa.rs │ └── get_grades.rs │ ├── lib.rs │ └── utils.rs └── test └── test.txt /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/README.md -------------------------------------------------------------------------------- /crates/choose_classes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/choose_classes/Cargo.toml -------------------------------------------------------------------------------- /crates/choose_classes/src/bin/choose_classes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/choose_classes/src/bin/choose_classes.rs -------------------------------------------------------------------------------- /crates/choose_classes/src/bin/get_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/choose_classes/src/bin/get_tokens.rs -------------------------------------------------------------------------------- /crates/choose_classes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/choose_classes/src/lib.rs -------------------------------------------------------------------------------- /crates/choose_classes/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/choose_classes/src/utils.rs -------------------------------------------------------------------------------- /crates/get_grades/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/get_grades/Cargo.toml -------------------------------------------------------------------------------- /crates/get_grades/src/bin/calc_gpa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/get_grades/src/bin/calc_gpa.rs -------------------------------------------------------------------------------- /crates/get_grades/src/bin/get_grades.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/get_grades/src/bin/get_grades.rs -------------------------------------------------------------------------------- /crates/get_grades/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/get_grades/src/lib.rs -------------------------------------------------------------------------------- /crates/get_grades/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkerhand/seu_utils/HEAD/crates/get_grades/src/utils.rs -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- 1 | test0001 2 | --------------------------------------------------------------------------------