forked from stainless-steel/sqlite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (39 loc) · 1.11 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
[package]
name = "marine-sqlite-connector"
version = "0.11.0"
license = "Apache-2.0/MIT"
authors = [
"Daniel Dulaney <ddy@vitronic.com>",
"Ivan Stankovic <pokemon@fly.srk.fer.hr>",
"Ivan Ukhov <ivan.ukhov@gmail.com>",
"Jake Kerr <kodafox@gmail.com>",
"Jayson Reis <santosdosreis@gmail.com>",
"Pierre Krieger <pierre.krieger1708@gmail.com>",
"Sean Klein <seanmarionklein@gmail.com>",
"Sophie Tauchert <999eagle@999eagle.moe>",
"Tomoki Aonuma <uasi@uasi.jp>",
"Yorhel <git@yorhel.nl>",
]
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"]
edition = "2018"
[lib]
name = "marine_sqlite_connector"
path = "src/lib.rs"
[[bin]]
name = "it_generator"
path = "src/it_generator.rs"
[[bin]]
name = "test"
path = "src/test.rs"
[dependencies]
marine-rs-sdk = "0.14.0"
bytesize = "1.3.0"
[dev-dependencies]
marine-rs-sdk-test = "0.15.0"
temporary = "0.7"