-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 968 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "tauri-plugin-libsql"
version = "0.1.0"
authors = ["Huakun"]
description = "Tauri plugin for libsql with encryption and drizzle ORM support"
edition = "2021"
license = "MIT"
rust-version = "1.77.2"
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]
links = "tauri-plugin-libsql"
[dependencies]
tauri = { version = "2.10.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
indexmap = { version = "2", features = ["serde"] }
tokio = { version = "1", features = ["sync", "rt", "rt-multi-thread"] }
futures = "0.3"
libsql = { version = "0.9.29", features = ["core"] }
bytes = { version = "1", optional = true }
[build-dependencies]
tauri-plugin = { version = "2.5.3", features = ["build"] }
[features]
default = ["core", "encryption"]
core = ["libsql/core"]
encryption = ["libsql/encryption", "dep:bytes"]
replication = ["libsql/replication", "libsql/tls"]
remote = ["libsql/remote", "libsql/tls"]