├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── libravatar.nimble └── src └── libravatar.nim /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancarlospaco/nim-libravatar/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancarlospaco/nim-libravatar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancarlospaco/nim-libravatar/HEAD/README.md -------------------------------------------------------------------------------- /libravatar.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancarlospaco/nim-libravatar/HEAD/libravatar.nimble -------------------------------------------------------------------------------- /src/libravatar.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juancarlospaco/nim-libravatar/HEAD/src/libravatar.nim --------------------------------------------------------------------------------