1
0
mirror of https://git.sr.ht/~adnano/kiln synced 2024-12-03 17:38:16 +01:00

Revert "Switch to other toml library"

This reverts commit d7e9f5e7c25a076edf5abff48ac851681d49d2d8.
This commit is contained in:
adnano 2021-03-20 20:35:48 -04:00
parent 6e7575fdc2
commit e8b6930d3b
3 changed files with 7 additions and 5 deletions

@ -4,7 +4,7 @@ import (
"os"
"text/template"
"github.com/BurntSushi/toml"
"github.com/pelletier/go-toml"
)
// Config contains site configuration.
@ -24,7 +24,7 @@ func LoadConfig(path string) (*Config, error) {
}
defer f.Close()
if _, err := toml.DecodeReader(f, c); err != nil {
if err := toml.NewDecoder(f).Decode(c); err != nil {
return nil, err
}

2
go.mod

@ -4,5 +4,5 @@ go 1.16
require (
git.sr.ht/~adnano/go-gemini v0.1.8
github.com/BurntSushi/toml v0.3.1
github.com/pelletier/go-toml v1.8.1
)

6
go.sum

@ -1,4 +1,6 @@
git.sr.ht/~adnano/go-gemini v0.1.8 h1:93DxDNXB0bjnfDhZewf+QsEopfuOMh/I4v7ujoJ6WIs=
git.sr.ht/~adnano/go-gemini v0.1.8/go.mod h1:If1VxEWcZDrRt5FeAFnGTcM2Ud1E3BXs3VJ5rnZWKq0=
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pelletier/go-toml v1.8.1 h1:1Nf83orprkJyknT6h7zbuEGUEjcyVlCxSUGTENmNCRM=
github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc=