mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-12 13:33:06 +00:00
C bindings: add libsql_open_sync_with_webpki and libsql_open_remote_with_webpki Signed-off-by: Piotr Jastrzebski <piotr@chiselstrike.com>
19 lines
414 B
TOML
19 lines
414 B
TOML
[package]
|
|
name = "sql-experimental"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
doc = false
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.24.0"
|
|
|
|
[dependencies]
|
|
bytes = "1.5.0"
|
|
lazy_static = "1.4.0"
|
|
libsql = { path = "../../libsql", features = ["encryption"] }
|
|
tokio = { version = "1.29.1", features = [ "rt-multi-thread" ] }
|
|
hyper-rustls = { version = "0.25", features = ["webpki-roots"]}
|