Freedesktop Desktop Entry Specification

This crate provides a library for efficiently parsing Desktop Entry files.

```rust use std::fs;

use freedesktopdesktopentry::{default_paths, DesktopEntry, Iter};

fn main() { for (pathsrc, path) in Iter::new(defaultpaths()) { if let Ok(bytes) = fs::readtostring(&path) { if let Ok(entry) = DesktopEntry::decode(&path, &bytes) { println!("{:?}: {}\n---\n{}", path_src, path.display(), entry); } } } } ```