forked from tursodatabase/turso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 2025 the Turso authors. All rights reserved. MIT license.
[package]
name = "turso"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Turso Rust API"
[lints]
workspace = true
[features]
default = ["mimalloc"]
antithesis = ["turso_sdk_kit/antithesis"]
mimalloc = ["dep:mimalloc"]
sync = [
"dep:hyper",
"dep:tokio",
"dep:hyper-tls",
"dep:hyper-util",
"dep:http-body-util",
"dep:bytes",
]
[dependencies]
turso_sdk_kit = { workspace = true }
turso_sync_sdk_kit = { workspace = true }
thiserror = { workspace = true }
tracing-subscriber.workspace = true
tracing.workspace = true
mimalloc = { workspace = true, optional = true }
hyper = { version = "1.8.1", features = ["http1"], optional = true }
tokio = { workspace = true, features = ["full"], optional = true }
hyper-tls = { version = "0.6.0", optional = true }
hyper-util = { version = "0.1.19", features = [
"http1",
"tokio",
], optional = true }
http-body-util = { version = "0.1.3", optional = true }
bytes = { version = "1.11.0", optional = true }
[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true, features = ["full"] }
rand.workspace = true
rand_chacha = { workspace = true }
anyhow.workspace = true
reqwest = { version = "0.12.28", features = ["json"] }
serde_json.workspace = true