-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
54 lines (51 loc) · 1.6 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "async-sqlite"
version = "0.5.0"
authors = ["Ryan Fowler"]
edition = "2021"
license = "MIT"
description = "A library for working with sqlite asynchronously"
repository = "https://github.com/ryanfowler/async-sqlite"
documentation = "https://docs.rs/async-sqlite"
keywords = ["sqlite", "sqlite3", "rusqlite", "async", "tokio"]
categories = ["database"]
[features]
default = ["bundled"]
array = ["rusqlite/array"]
backup = ["rusqlite/backup"]
blob = ["rusqlite/blob"]
bundled = ["rusqlite/bundled"]
bundled-full = ["rusqlite/bundled-full"]
bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]
bundled-sqlcipher-vendored-openssl = [
"rusqlite/bundled-sqlcipher-vendored-openssl",
]
chrono = ["rusqlite/chrono"]
column_decltype = ["rusqlite/column_decltype"]
csv = ["rusqlite/csv"]
csvtab = ["rusqlite/csvtab"]
functions = ["rusqlite/functions"]
hooks = ["rusqlite/hooks"]
limits = ["rusqlite/limits"]
load_extension = ["rusqlite/load_extension"]
modern-full = ["rusqlite/modern-full"]
serde_json = ["rusqlite/serde_json"]
session = ["rusqlite/session"]
sqlcipher = ["rusqlite/sqlcipher"]
time = ["rusqlite/time"]
trace = ["rusqlite/trace"]
unlock_notify = ["rusqlite/unlock_notify"]
url = ["rusqlite/url"]
uuid = ["rusqlite/uuid"]
vtab = ["rusqlite/vtab"]
window = ["rusqlite/window"]
[dependencies]
crossbeam-channel = { version = "0.5.9" }
futures-channel = { version = "0.3.29" }
futures-util = { version = "0.3.29" }
rusqlite = { version = "0.34.0" }
[dev-dependencies]
async-std = { version = "1.12.0" }
paste = { version = "1.0.12" }
tempfile = { version = "3.6.0" }
tokio = { version = "1.29.1", features = ["rt"] }