├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── find-system-font.rs ├── src └── lib.rs └── tests ├── add_fonts.rs └── fonts ├── LICENSE.txt └── Tuffy.ttf /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/README.md -------------------------------------------------------------------------------- /examples/find-system-font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/examples/find-system-font.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/add_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/tests/add_fonts.rs -------------------------------------------------------------------------------- /tests/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/tests/fonts/LICENSE.txt -------------------------------------------------------------------------------- /tests/fonts/Tuffy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazrFalcon/fontdb/HEAD/tests/fonts/Tuffy.ttf --------------------------------------------------------------------------------