Bump github.com/BurntSushi/toml from 1.3.0 to 1.3.1

Bumps [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](https://github.com/BurntSushi/toml/compare/v1.3.0...v1.3.1)

---
updated-dependencies:
- dependency-name: github.com/BurntSushi/toml
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-06-07 03:57:58 +00:00 committed by GitHub
parent 0f1e3b4ba8
commit 87afa2aa99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 25 deletions

2
go.mod
View file

@ -3,7 +3,7 @@ module github.com/dnscrypt/dnscrypt-proxy
go 1.20 go 1.20
require ( require (
github.com/BurntSushi/toml v1.3.0 github.com/BurntSushi/toml v1.3.1
github.com/VividCortex/ewma v1.2.0 github.com/VividCortex/ewma v1.2.0
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185 github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185

4
go.sum
View file

@ -1,5 +1,5 @@
github.com/BurntSushi/toml v1.3.0 h1:Ws8e5YmnrGEHzZEzg0YvK/7COGYtTC5PbaH9oSSbgfA= github.com/BurntSushi/toml v1.3.1 h1:rHnDkSK+/g6DlREUK73PkmIs60pqrnuduK+JmP++JmU=
github.com/BurntSushi/toml v1.3.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/toml v1.3.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/VividCortex/ewma v1.2.0 h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow= github.com/VividCortex/ewma v1.2.0 h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow=
github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAUnGx7j5l4= github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAUnGx7j5l4=
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=

View file

@ -248,7 +248,7 @@ func (md *MetaData) unify(data interface{}, rv reflect.Value) error {
case reflect.Bool: case reflect.Bool:
return md.unifyBool(data, rv) return md.unifyBool(data, rv)
case reflect.Interface: case reflect.Interface:
if rv.NumMethod() > 0 { // Only support empty interfaces are supported. if rv.NumMethod() > 0 { /// Only empty interfaces are supported.
return md.e("unsupported type %s", rv.Type()) return md.e("unsupported type %s", rv.Type())
} }
return md.unifyAnything(data, rv) return md.unifyAnything(data, rv)

View file

@ -136,10 +136,8 @@ func NewEncoder(w io.Writer) *Encoder {
// document. // document.
func (enc *Encoder) Encode(v interface{}) error { func (enc *Encoder) Encode(v interface{}) error {
rv := eindirect(reflect.ValueOf(v)) rv := eindirect(reflect.ValueOf(v))
err := enc.safeEncode(Key([]string{}), rv)
// XXX if err != nil {
if err := enc.safeEncode(Key([]string{}), rv); err != nil {
return err return err
} }
return enc.w.Flush() return enc.w.Flush()
@ -505,7 +503,7 @@ func (enc *Encoder) eStruct(key Key, rv reflect.Value, inline bool) {
fieldVal = eindirect(fieldVal) fieldVal = eindirect(fieldVal)
if isNil(fieldVal) { // Don't write anything for nil fields. if isNil(fieldVal) { /// Don't write anything for nil fields.
continue continue
} }

View file

@ -11,10 +11,7 @@ import (
"github.com/BurntSushi/toml/internal" "github.com/BurntSushi/toml/internal"
) )
var tomlNext = func() bool { var tomlNext bool
_, ok := os.LookupEnv("BURNTSUSHI_TOML_110")
return ok
}()
type parser struct { type parser struct {
lx *lexer lx *lexer
@ -35,6 +32,9 @@ type keyInfo struct {
} }
func parse(data string) (p *parser, err error) { func parse(data string) (p *parser, err error) {
_, ok := os.LookupEnv("BURNTSUSHI_TOML_110")
tomlNext = ok
defer func() { defer func() {
if r := recover(); r != nil { if r := recover(); r != nil {
if pErr, ok := r.(ParseError); ok { if pErr, ok := r.(ParseError); ok {
@ -203,12 +203,12 @@ func (p *parser) topLevel(item item) {
for i := range context { for i := range context {
p.addImplicitContext(append(p.context, context[i:i+1]...)) p.addImplicitContext(append(p.context, context[i:i+1]...))
} }
p.ordered = append(p.ordered, p.context.add(p.currentKey))
/// Set value. /// Set value.
vItem := p.next() vItem := p.next()
val, typ := p.value(vItem, false) val, typ := p.value(vItem, false)
p.set(p.currentKey, val, typ, vItem.pos) p.set(p.currentKey, val, typ, vItem.pos)
p.ordered = append(p.ordered, p.context.add(p.currentKey))
/// Remove the context we added (preserving any context from [tbl] lines). /// Remove the context we added (preserving any context from [tbl] lines).
p.context = outerContext p.context = outerContext
@ -445,11 +445,11 @@ func (p *parser) valueInlineTable(it item, parentIsArray bool) (interface{}, tom
for i := range context { for i := range context {
p.addImplicitContext(append(p.context, context[i:i+1]...)) p.addImplicitContext(append(p.context, context[i:i+1]...))
} }
p.ordered = append(p.ordered, p.context.add(p.currentKey))
/// Set the value. /// Set the value.
val, typ := p.value(p.next(), false) val, typ := p.value(p.next(), false)
p.set(p.currentKey, val, typ, it.pos) p.set(p.currentKey, val, typ, it.pos)
p.ordered = append(p.ordered, p.context.add(p.currentKey))
hash[p.currentKey] = val hash[p.currentKey] = val
/// Restore context. /// Restore context.
@ -570,7 +570,6 @@ func (p *parser) addContext(key Key, array bool) {
func (p *parser) set(key string, val interface{}, typ tomlType, pos Position) { func (p *parser) set(key string, val interface{}, typ tomlType, pos Position) {
p.setValue(key, val) p.setValue(key, val)
p.setType(key, typ, pos) p.setType(key, typ, pos)
} }
// setValue sets the given key to the given value in the current context. // setValue sets the given key to the given value in the current context.
@ -655,10 +654,7 @@ func (p *parser) addImplicit(key Key) { p.implicits[key.String()] = struct{}
func (p *parser) removeImplicit(key Key) { delete(p.implicits, key.String()) } func (p *parser) removeImplicit(key Key) { delete(p.implicits, key.String()) }
func (p *parser) isImplicit(key Key) bool { _, ok := p.implicits[key.String()]; return ok } func (p *parser) isImplicit(key Key) bool { _, ok := p.implicits[key.String()]; return ok }
func (p *parser) isArray(key Key) bool { return p.keyInfo[key.String()].tomlType == tomlArray } func (p *parser) isArray(key Key) bool { return p.keyInfo[key.String()].tomlType == tomlArray }
func (p *parser) addImplicitContext(key Key) { func (p *parser) addImplicitContext(key Key) { p.addImplicit(key); p.addContext(key, false) }
p.addImplicit(key)
p.addContext(key, false)
}
// current returns the full key name of the current context. // current returns the full key name of the current context.
func (p *parser) current() string { func (p *parser) current() string {

2
vendor/modules.txt vendored
View file

@ -1,4 +1,4 @@
# github.com/BurntSushi/toml v1.3.0 # github.com/BurntSushi/toml v1.3.1
## explicit; go 1.16 ## explicit; go 1.16
github.com/BurntSushi/toml github.com/BurntSushi/toml
github.com/BurntSushi/toml/internal github.com/BurntSushi/toml/internal