Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

17
vendor/fontconfig-parser/README.md vendored Normal file
View File

@@ -0,0 +1,17 @@
# fontconfig-parser
This crate provide parsing fontconfig file but not yet complete all features
see <https://www.freedesktop.org/software/fontconfig/fontconfig-user.html> for more detail infomation of fontconfig file
## Example
```rust
use fontconfig_parser::FontConfig;
let mut config = FontConfig::default();
config.merge_config("/etc/fonts/fonts.conf").unwrap();
```
License: MIT