Skip to content

Commit 0ff41bb

Browse files
committed
Deps.
1 parent ba9caf0 commit 0ff41bb

File tree

22 files changed

+37
-25
lines changed

22 files changed

+37
-25
lines changed

embed/bcw2/bcw2.wasm

439 Bytes
Binary file not shown.

embed/bcw2/bcw2_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func Test_bcw2(t *testing.T) {
5353
if err != nil {
5454
t.Fatal(err)
5555
}
56-
if version != "3.51.0" {
56+
if version != "3.52.0" {
5757
t.Error(version)
5858
}
5959
}

embed/bcw2/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ cp "$ROOT"/sqlite3/*.[ch] build/
1515
cp "$ROOT"/sqlite3/*.patch build/
1616
cd sqlite/
1717

18-
# https://sqlite.org/src/info/0e862bc9ed7aa9ae
19-
curl -#L https://github.com/sqlite/sqlite/archive/0b99392.tar.gz | tar xz --strip-components=1
20-
# curl -#L https://sqlite.org/src/tarball/sqlite.tar.gz?r=0e862bc9ed | tar xz --strip-components=1
18+
# https://sqlite.org/src/info/352b363a5d727047
19+
curl -#L https://github.com/sqlite/sqlite/archive/dbd613c.tar.gz | tar xz --strip-components=1
20+
# curl -#L https://sqlite.org/src/tarball/sqlite.tar.gz?r=352b363a5d | tar xz --strip-components=1
2121

2222
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
2323
MSYS_NO_PATHCONV=1 nmake /f makefile.msc sqlite3.c "OPTS=-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT -DSQLITE_ENABLE_ORDERED_SET_AGGREGATES"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/dchest/siphash v1.2.3 // ext/bloom
1515
github.com/google/uuid v1.6.0 // ext/uuid
1616
github.com/psanford/httpreadat v0.1.0 // example
17-
golang.org/x/crypto v0.44.0 // vfs/adiantum vfs/xts
17+
golang.org/x/crypto v0.45.0 // vfs/adiantum vfs/xts
1818
golang.org/x/sync v0.18.0 // test
1919
golang.org/x/text v0.31.0 // ext/unicode
2020
lukechampine.com/adiantum v1.1.1 // vfs/adiantum

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ github.com/psanford/httpreadat v0.1.0 h1:VleW1HS2zO7/4c7c7zNl33fO6oYACSagjJIyMIw
1212
github.com/psanford/httpreadat v0.1.0/go.mod h1:Zg7P+TlBm3bYbyHTKv/EdtSJZn3qwbPwpfZ/I9GKCRE=
1313
github.com/tetratelabs/wazero v1.10.1 h1:2DugeJf6VVk58KTPszlNfeeN8AhhpwcZqkJj2wwFuH8=
1414
github.com/tetratelabs/wazero v1.10.1/go.mod h1:DRm5twOQ5Gr1AoEdSi0CLjDQF1J9ZAuyqFIjl1KKfQU=
15-
golang.org/x/crypto v0.44.0 h1:A97SsFvM3AIwEEmTBiaxPPTYpDC47w720rdiiUvgoAU=
16-
golang.org/x/crypto v0.44.0/go.mod h1:013i+Nw79BMiQiMsOPcVCB5ZIJbYkerPrGnOa00tvmc=
15+
golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q=
16+
golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4=
1717
golang.org/x/sync v0.18.0 h1:kr88TuHDroi+UVf+0hZnirlk8o8T+4MrK6mr60WkH/I=
1818
golang.org/x/sync v0.18.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
1919
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=

internal/alloc/alloc_unix.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ package alloc
55
import (
66
"math"
77

8-
"github.com/tetratelabs/wazero/experimental"
98
"golang.org/x/sys/unix"
9+
10+
"github.com/tetratelabs/wazero/experimental"
1011
)
1112

1213
func NewMemory(cap, max uint64) experimental.LinearMemory {

internal/alloc/alloc_windows.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import (
55
"reflect"
66
"unsafe"
77

8-
"github.com/tetratelabs/wazero/experimental"
98
"golang.org/x/sys/windows"
9+
10+
"github.com/tetratelabs/wazero/experimental"
1011
)
1112

1213
func NewMemory(cap, max uint64) experimental.LinearMemory {

internal/util/mmap_unix.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77
"os"
88
"unsafe"
99

10-
"github.com/tetratelabs/wazero/api"
1110
"golang.org/x/sys/unix"
11+
12+
"github.com/tetratelabs/wazero/api"
1213
)
1314

1415
type mmapState struct {

litestream/api.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"time"
88

99
"github.com/benbjohnson/litestream"
10+
1011
"github.com/ncruces/go-sqlite3/vfs"
1112
)
1213

litestream/example_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"time"
66

77
"github.com/benbjohnson/litestream/s3"
8+
89
"github.com/ncruces/go-sqlite3/driver"
910
_ "github.com/ncruces/go-sqlite3/embed"
1011
"github.com/ncruces/go-sqlite3/litestream"

0 commit comments

Comments
 (0)