diff options
author | 2021-12-12 15:47:51 +0100 | |
---|---|---|
committer | 2021-12-12 15:47:51 +0100 | |
commit | 67ac8db190eb82a7758746fb021fa3014f4241b7 (patch) | |
tree | 4a4124ad8f0ee9ec8858b109dd0bcc2e567fc144 /vendor/modernc.org/sqlite/doc.go | |
parent | upstep dependencies (#339) (diff) | |
download | gotosocial-67ac8db190eb82a7758746fb021fa3014f4241b7.tar.xz |
Upstep Go dependencies (#340)
* Upstep Go dependencies
* tiny linter fix
* Tidy
Diffstat (limited to 'vendor/modernc.org/sqlite/doc.go')
-rw-r--r-- | vendor/modernc.org/sqlite/doc.go | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/vendor/modernc.org/sqlite/doc.go b/vendor/modernc.org/sqlite/doc.go index a39c5ed13..d1fd23643 100644 --- a/vendor/modernc.org/sqlite/doc.go +++ b/vendor/modernc.org/sqlite/doc.go @@ -2,7 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package sqlite is a CGo-free port of SQLite/SQLite3 v3.36.0. +// Package sqlite is a sql/database driver using a CGo-free port of the C +// SQLite3 library. // // SQLite is an in-process implementation of a self-contained, serverless, // zero-configuration, transactional SQL database engine. @@ -11,14 +12,16 @@ // // These combinations of GOOS and GOARCH are currently supported // -// darwin amd64 -// darwin arm64 -// freebsd amd64 -// linux 386 -// linux amd64 -// linux arm -// linux arm64 -// windows amd64 +// OS Arch SQLite version +// ------------------------------ +// darwin amd64 3.37.0 +// darwin arm64 3.37.0 +// freebsd amd64 3.37.0 +// linux 386 3.37.0 +// linux amd64 3.37.0 +// linux arm 3.37.0 +// linux arm64 3.37.0 +// windows amd64 3.36.0 (Issue #80) // // Builders // |