├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── FAQ.md ├── LICENSE ├── README.md ├── benches └── benches.rs ├── examples └── position.rs ├── src ├── lib.rs └── tests.rs └── tests └── integration_tests.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/Cargo.toml -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/README.md -------------------------------------------------------------------------------- /benches/benches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/benches/benches.rs -------------------------------------------------------------------------------- /examples/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/examples/position.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/src/tests.rs -------------------------------------------------------------------------------- /tests/integration_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fflorent/nom_locate/HEAD/tests/integration_tests.rs --------------------------------------------------------------------------------