summaryrefslogtreecommitdiff
path: root/go.sum
AgeCommit message (Collapse)Author
2024-10-22Remove github.com/gorilla/mux dependencyxengineering
The reason for the introduction of this dependency was that it was easy to setup routes with HTTP method restrictions. Since Go 1.22 this feature is part of the standard library. Method restrictions are part of the patterns used to register routes [1]. [1]: https://pkg.go.dev/net/http#hdr-Patterns-ServeMux
2024-10-21Run go mod tidyxengineering
2024-02-15Update github.com/mattn/go-sqlite3 to v1.14.22xengineering
2023-12-27Add github.com/gorilla/muxxengineering
This dependency provides a more extended HTTP routing than the Go standard library.
2023-12-27Add github.com/mattn/go-sqlite3xengineering
This can be used to implement the `database/sql` interface from the Go standard library for sqlite databases. This is the currently preferred method to store user data for Ceres.
2023-04-08Remove Markdown renderingxengineering
This step prepares moving to a new, custom and easily parsable markup language.
2023-04-02Switch from MariaDB to filesxengineering
Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler.
2022-11-07Add existing workxengineering