├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.rst ├── src ├── constants.rs ├── data.rs ├── errors.rs ├── lib.rs ├── macros.rs ├── parser.rs ├── parser_builder.rs ├── parser_registry.rs ├── symbol_table.rs └── utils.rs └── update_version.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/README.rst -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/data.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/parser.rs -------------------------------------------------------------------------------- /src/parser_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/parser_builder.rs -------------------------------------------------------------------------------- /src/parser_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/parser_registry.rs -------------------------------------------------------------------------------- /src/symbol_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/symbol_table.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/src/utils.rs -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/gazetteer-entity-parser/HEAD/update_version.sh --------------------------------------------------------------------------------