├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── benches └── step_by_comparison.rs ├── ci ├── run_linux_and_mac.sh └── run_windows.bat ├── examples └── main_example.rs ├── rustfmt.toml ├── src ├── lib.rs └── utils.rs └── tests └── test_staticstep.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benches/step_by_comparison.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/benches/step_by_comparison.rs -------------------------------------------------------------------------------- /ci/run_linux_and_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/ci/run_linux_and_mac.sh -------------------------------------------------------------------------------- /ci/run_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/ci/run_windows.bat -------------------------------------------------------------------------------- /examples/main_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/examples/main_example.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/test_staticstep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoutofphase/staticstep/HEAD/tests/test_staticstep.rs --------------------------------------------------------------------------------