fontconfig-parser 0.5.7

fontconfig file parser in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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