|
1 | 1 | [package] |
2 | 2 | name = "libsql" |
3 | | -version = "0.6.0" |
4 | | -edition = "2021" |
5 | | -description = "libSQL library: the main gateway for interacting with the database" |
6 | | -repository = "https://github.com/tursodatabase/libsql" |
7 | | -license = "MIT" |
| 3 | +version.workspace = true |
| 4 | +authors.workspace = true |
| 5 | +edition.workspace = true |
| 6 | +license.workspace = true |
| 7 | +repository.workspace = true |
| 8 | +description = "The libSQL database library" |
8 | 9 |
|
9 | 10 | [dependencies] |
10 | 11 | tracing = { version = "0.1.37", default-features = false } |
11 | 12 | thiserror = "1.0.40" |
12 | 13 |
|
13 | 14 | futures = { version = "0.3.28", optional = true } |
14 | | -libsql-sys = { version = "0.8", path = "../libsql-sys", optional = true } |
15 | | -libsql-hrana = { version = "0.2", path = "../libsql-hrana", optional = true } |
| 15 | +libsql-sys = { workspace = true, optional = true, default-features = true } |
| 16 | +libsql-hrana = { workspace = true, optional = true } |
16 | 17 | tokio = { version = "1.29.1", features = ["sync"], optional = true } |
17 | 18 | tokio-util = { version = "0.7", features = ["io-util", "codec"], optional = true } |
18 | 19 | parking_lot = { version = "0.12.1", optional = true } |
@@ -40,7 +41,7 @@ zerocopy = { version = "0.7.28", optional = true } |
40 | 41 | sqlite3-parser = { package = "libsql-sqlite3-parser", path = "../vendored/sqlite3-parser", version = "0.13", optional = true } |
41 | 42 | fallible-iterator = { version = "0.3", optional = true } |
42 | 43 |
|
43 | | -libsql_replication = { version = "0.6", path = "../libsql-replication", optional = true } |
| 44 | +libsql_replication = { workspace = true, optional = true } |
44 | 45 | async-stream = { version = "0.3.5", optional = true } |
45 | 46 |
|
46 | 47 | crc32fast = { version = "1", optional = true } |
|
0 commit comments