Updated readme with new dependencies

This commit is contained in:
Brendan Ward 2014-11-13 06:35:52 -08:00
parent 64c87f4f13
commit 2da5176354

View File

@ -8,8 +8,13 @@ Basic Go server for mbtiles.
Provide a very simple Go-based server for map tiles stored in *.mbtiles files.
## Dependencies ##
* [github.com/jessevdk/go-flags](http://github.com/jessevdk/go-flags)
* [github.com/mattn/go-sqlite3](http://github.com/mattn/go-sqlite3)
* [github.com/gin-gonic/gin](http://github.com/gin-gonic/gin)
* [github.com/zenazn/goji](http://github.com/zenazn/goji)
* [github.com/golang/groupcache](http://github.com/golang/groupcache)
## Work in progress ##
This project is very much a work in progress. Stay tuned!
## Notes ##
Currently using groupcache for in-memory caching and coordination of database reads. May replace with goji caching middleware to keep this stack more self-contained. TBD.