systemicons 0.3.0

With this lib you can retrive the system icon which is associated to a certain file extension. The icon will be in the .png format. Windows and Linux (GTK) are supperted.
Documentation
<html>
    <head>
        <title>Rust System Icons</title>
        <meta charset="utf-8"/>
        <style>
            body{
                background-color: gray;
            }
            .ico {
                width: 64px;
                height: 64px;
            }
            .smallico {
                width: 16px;
                height: 16px;
            }
        </style>
    </head>

    <body>
        <h1>Rust System Icons</h1>
        <p>
            This is a sample page for displaying in <em>Rust System Icons</em>
        </p>
        <p>
            <img class="ico" src="geticon?ext=c:\\windows\\explorer.exe&size=64"/>
        </p>
        <p>
            <img class="ico" src="geticon?ext=c:\\windows\\nofilefound.exe&size=64"/>
        </p>
        <p>
            <img class="ico" src="geticon?ext=.pdf&size=64"/>
        </p>
        <p>
            <img class="smallico" src="geticon?ext=.pdf&size=16"/>
        </p>

    </body> 
</html>