updated dependencies and go 1.17

This commit is contained in:
ston1th 2021-09-11 15:54:11 +02:00
commit 88ac31dcd9
330 changed files with 21749 additions and 13986 deletions

11
vendor/go.etcd.io/bbolt/mlock_windows.go generated vendored Normal file
View file

@ -0,0 +1,11 @@
package bbolt
// mlock locks memory of db file
func mlock(_ *DB, _ int) error {
panic("mlock is supported only on UNIX systems")
}
//munlock unlocks memory of db file
func munlock(_ *DB, _ int) error {
panic("munlock is supported only on UNIX systems")
}