-
Notifications
You must be signed in to change notification settings - Fork 487
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.14 KB
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
32
33
34
35
36
37
38
[package]
name = "libsql_replication"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Replication protocol for libSQL"
[dependencies]
tonic = { version = "0.11", default-features = false, features = ["codegen", "prost"] }
prost = "0.12"
libsql-sys = { workspace = true, default-features = false, features = ["wal", "rusqlite", "api"] }
rusqlite = { workspace = true }
parking_lot = "0.12.1"
bytes = { version = "1.5.0", features = ["serde"] }
serde = { version = "1.0.189", features = ["derive"] }
thiserror = "1.0.49"
tracing = "0.1.40"
tokio = { version = "1.33.0", features = ["full"] }
tokio-stream = "0.1.14"
async-trait = "0.1.74"
uuid = { version = "1.5.0", features = ["v4"] }
tokio-util = "0.7.9"
async-stream = "0.3.5"
zerocopy = { version = "0.7.28", features = ["derive"] }
aes = "0.8.3"
cbc = "0.1.2"
[dev-dependencies]
arbitrary = { version = "1.3.0", features = ["derive_arbitrary"] }
wincode = { version = "0.2", features = ["derive"] }
tempfile = "3.8.0"
prost-build = "0.12"
tonic-build = "0.11"
[features]
encryption = ["libsql-sys/encryption"]