-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
47 lines (44 loc) · 1.45 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
[package]
name = "sqlite"
version = "0.36.1"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
"Alec Moskvin <[email protected]>",
"Angel Leon <[email protected]>",
"Cecile Tonglet <[email protected]>",
"Daniel Dulaney <[email protected]>",
"Ivan Stankovic <[email protected]>",
"Ivan Ukhov <[email protected]>",
"Jake Kerr <[email protected]>",
"James Haywood <[email protected]>",
"Jayson Reis <[email protected]>",
"Jonatan Lemes <[email protected]>",
"Luna Lux <[email protected]>",
"Pierre Krieger <[email protected]>",
"Sean Klein <[email protected]>",
"Sophie Tauchert <[email protected]>",
"Tomoki Aonuma <[email protected]>",
"Vincenzo Palazzo <[email protected]>",
"Yorhel <[email protected]>",
"kodeschreiber",
]
description = "The package provides an interface to SQLite."
documentation = "https://docs.rs/sqlite"
homepage = "https://github.com/stainless-steel/sqlite"
repository = "https://github.com/stainless-steel/sqlite"
readme = "README.md"
categories = ["api-bindings", "database"]
keywords = ["database"]
[features]
default = ["linkage"]
bundled = ["sqlite3-sys/bundled"]
extension = []
encryption = ["sqlite3-sys/encryption"]
linkage = ["sqlite3-sys/linkage"]
[dependencies.sqlite3-sys]
version = "0.17"
default-features = false
[dev-dependencies]
temporary = "0.6"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }