-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (29 loc) · 989 Bytes
/
Cargo.toml
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
[package]
name = "hrana-client"
version = "0.3.2"
edition = "2021"
license = "Apache-2.0"
description = "Hrana client for libSQL and sqld"
keywords = ["libsql", "sqld", "database", "driver", "hrana"]
repository = "https://github.com/libsql/hrana-client-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
base64 = "0.21.0"
futures = "0.3.27"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
thiserror = "1.0.40"
tokio = { version = "1.22.2", features = ["net", "sync", "rt", "macros"] }
tokio-tungstenite = { version = "0.18", features = ["rustls-tls-webpki-roots"] }
hrana-client-proto = { version = "0", path = "./hrana-client-proto" }
[dev-dependencies]
tokio = { version = "1.22.2", features = ["rt-multi-thread"] }
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "batch"
path = "examples/batch.rs"
[workspace]
members = ["hrana-client-proto"]