updated dependencies

This commit is contained in:
ston1th 2023-12-20 20:20:50 +01:00
commit 68d82bd961
450 changed files with 229907 additions and 32 deletions

10
vendor/go.etcd.io/bbolt/bolt_linux.go generated vendored Normal file
View file

@ -0,0 +1,10 @@
package bbolt
import (
"syscall"
)
// fdatasync flushes written data to a file descriptor.
func fdatasync(db *DB) error {
return syscall.Fdatasync(int(db.file.Fd()))
}