forked from ivanceras/r2d2-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 818 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
36
[package]
name = "r2d2_sqlite_neonphog"
version = "0.18.0"
authors = ["Jovansonlee Cesar<[email protected]>"]
license = "MIT"
description = "Sqlite support for the r2d2 connection pool"
repository = "https://github.com/ivanceras/r2d2-sqlite"
documentation = "https://docs.rs/r2d2_sqlite/"
keywords = ["sqlite", "r2d2", "pool"]
edition = "2018"
[lib]
name = "r2d2_sqlite"
path = "src/lib.rs"
test = false
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies]
r2d2 = "0.8"
rusqlite = "0.26"
[dev-dependencies]
tempdir = "0.3"
[dev-dependencies.rusqlite]
version = "0.26"
features = ["trace"]
[features]
bundled = ["rusqlite/bundled"]
bundled-sqlcipher = ["rusqlite/bundled-sqlcipher"]
bundled-sqlcipher-vendored-openssl = ["rusqlite/bundled-sqlcipher-vendored-openssl"]
sqlcipher = ["rusqlite/sqlcipher"]