OpenFactorioServerManager / factorio-server-manager

A tool to help manage Factorio multiplayer servers including mods and save games.
MIT License
541 stars 130 forks source link

Replace current sqlite3 #325

Closed knoxfighter closed 8 months ago

knoxfighter commented 2 years ago

Current sqlite3 dependency is C based and therefore needs CGo. We don't want to have CGo as dependency therefore changing to a pure go library should be done. Will also result in alit easier windows setup and no more GCC linkage. See #307

knoxfighter commented 8 months ago

We can replace it with https://github.com/glebarez/go-sqlite. It should be a drop-in replacement.