Skip to content

Commit a383b03

Browse files
committed
Add libsql-ffi to workspace depedencies
1 parent d1c95e2 commit a383b03

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ license = "MIT"
3232
repository = "https://github.com/tursodatabase/libsql"
3333

3434
[workspace.dependencies]
35+
libsql-ffi = { path = "libsql-ffi", version = "0.9.0" }
3536
libsql-sys = { path = "libsql-sys", version = "0.9.0", default-features = false }
3637
libsql-hrana = { path = "libsql-hrana", version = "0.9.0" }
3738
libsql_replication = { path = "libsql-replication", version = "0.9.0" }

libsql-ffi/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "libsql-ffi"
3-
version = "0.5.0"
4-
edition = "2021"
5-
build = "build.rs"
6-
license = "MIT"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
78
description = "Native bindings to libSQL"
8-
repository = "https://github.com/tursodatabase/libsql"
9+
build = "build.rs"
910
exclude = ["bundled/SQLite3MultipleCiphers/build", "bundled/SQLite3MultipleCiphers/test"]
1011

1112
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

libsql-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["external-ffi-bindings"]
1111

1212
[dependencies]
1313
bytes = "1.5.0"
14-
libsql-ffi = { version = "0.5", path = "../libsql-ffi/" }
14+
libsql-ffi = { workspace = true }
1515
once_cell = "1.18.0"
1616
rusqlite = { workspace = true, features = ["trace"], optional = true }
1717
tracing = "0.1.37"

0 commit comments

Comments
 (0)