├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── justfile ├── release ├── src ├── lib.rs └── main.rs └── tests ├── fixture-scrimshaw.html └── fixture-viking.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | *.whl 3 | *egg-info/ 4 | *.deb 5 | 6 | 7 | # Added by cargo 8 | 9 | /target 10 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/justfile -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/release -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/fixture-scrimshaw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/tests/fixture-scrimshaw.html -------------------------------------------------------------------------------- /tests/fixture-viking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorsch/etym/HEAD/tests/fixture-viking.html --------------------------------------------------------------------------------