Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ codegen-units = 1
panic = "unwind"

[workspace.dependencies]
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.31", default-features = false, features = [
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.32", default-features = false, features = [
"libsql-experimental",
"column_decltype",
"load_extension",
Expand Down
2 changes: 1 addition & 1 deletion libsql-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-ffi"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
build = "build.rs"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions libsql-replication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql_replication"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "libSQL replication protocol"
repository = "https://github.com/tursodatabase/libsql"
Expand All @@ -11,7 +11,7 @@ license = "MIT"
[dependencies]
tonic = { version = "0.11", features = ["tls"] }
prost = "0.12"
libsql-sys = { version = "0.6", path = "../libsql-sys", default-features = false, features = ["wal", "rusqlite", "api"] }
libsql-sys = { version = "0.7", path = "../libsql-sys", default-features = false, features = ["wal", "rusqlite", "api"] }
rusqlite = { workspace = true }
parking_lot = "0.12.1"
bytes = { version = "1.5.0", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions libsql-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-sys"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "MIT"
description = "Native bindings to libSQL"
Expand All @@ -12,7 +12,7 @@ categories = ["external-ffi-bindings"]

[dependencies]
bytes = "1.5.0"
libsql-ffi = { version = "0.3", path = "../libsql-ffi/" }
libsql-ffi = { version = "0.4", path = "../libsql-ffi/" }
once_cell = "1.18.0"
rusqlite = { workspace = true, features = ["trace"], optional = true }
tracing = "0.1.37"
Expand Down
8 changes: 4 additions & 4 deletions libsql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql"
version = "0.5.0-alpha.2"
version = "0.5.0"
edition = "2021"
description = "libSQL library: the main gateway for interacting with the database"
repository = "https://github.com/tursodatabase/libsql"
Expand All @@ -11,7 +11,7 @@ tracing = { version = "0.1.37", default-features = false }
thiserror = "1.0.40"

futures = { version = "0.3.28", optional = true }
libsql-sys = { version = "0.6", path = "../libsql-sys", optional = true }
libsql-sys = { version = "0.7", path = "../libsql-sys", optional = true }
libsql-hrana = { version = "0.2", path = "../libsql-hrana", optional = true }
tokio = { version = "1.29.1", features = ["sync"], optional = true }
tokio-util = { version = "0.7", features = ["io-util", "codec"], optional = true }
Expand All @@ -37,10 +37,10 @@ tower-http = { version = "0.4.4", features = ["trace", "set-header", "util"], op
http = { version = "0.2", optional = true }
zerocopy = { version = "0.7.28", optional = true }

sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.12", optional = true }
sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.13", optional = true }
fallible-iterator = { version = "0.3", optional = true }

libsql_replication = { version = "0.4", path = "../libsql-replication", optional = true }
libsql_replication = { version = "0.5", path = "../libsql-replication", optional = true }
async-stream = { version = "0.3.5", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions vendored/rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libsql-rusqlite"
# Note: Update version in README.md when you change this.
version = "0.31.0"
version = "0.32.0"
authors = ["The rusqlite developers"]
edition = "2018"
description = "Ergonomic wrapper for SQLite (libsql fork)"
Expand Down Expand Up @@ -109,7 +109,7 @@ fallible-iterator = "0.2"
fallible-streaming-iterator = "0.1"
uuid = { version = "1.0", optional = true }
smallvec = "1.6.1"
libsql-ffi = { version = "0.3", path = "../../libsql-ffi" }
libsql-ffi = { version = "0.4", path = "../../libsql-ffi" }

[dev-dependencies]
doc-comment = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion vendored/sqlite3-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsql-sqlite3-parser"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
authors = ["gwenn"]
description = "SQL parser (as understood by SQLite) (libsql fork)"
Expand Down