2015-05-28 17:21:43 -04:00
|
|
|
[package]
|
2021-05-10 18:02:36 +03:00
|
|
|
name = "marine-sqlite-connector"
|
2023-05-11 17:20:01 +03:00
|
|
|
version = "0.8.2"
|
2016-02-27 13:05:42 +01:00
|
|
|
license = "Apache-2.0/MIT"
|
2015-11-21 17:15:46 +01:00
|
|
|
authors = [
|
2020-06-05 21:56:08 +02:00
|
|
|
"Daniel Dulaney <ddy@vitronic.com>",
|
2016-11-08 09:12:33 +01:00
|
|
|
"Ivan Stankovic <pokemon@fly.srk.fer.hr>",
|
|
|
|
"Ivan Ukhov <ivan.ukhov@gmail.com>",
|
|
|
|
"Jake Kerr <kodafox@gmail.com>",
|
2018-10-06 10:32:38 +02:00
|
|
|
"Jayson Reis <santosdosreis@gmail.com>",
|
2016-11-30 13:23:57 +01:00
|
|
|
"Pierre Krieger <pierre.krieger1708@gmail.com>",
|
2020-05-26 20:20:49 +02:00
|
|
|
"Sean Klein <seanmarionklein@gmail.com>",
|
2019-06-08 18:45:18 +02:00
|
|
|
"Sophie Tauchert <999eagle@999eagle.moe>",
|
2016-11-08 09:12:33 +01:00
|
|
|
"Tomoki Aonuma <uasi@uasi.jp>",
|
2020-06-10 15:38:47 +02:00
|
|
|
"Yorhel <git@yorhel.nl>",
|
2015-11-21 17:15:46 +01:00
|
|
|
]
|
2015-05-28 17:21:43 -04:00
|
|
|
description = "The package provides an interface to SQLite."
|
2016-11-05 11:34:15 +01:00
|
|
|
documentation = "https://docs.rs/sqlite"
|
2016-02-27 13:05:42 +01:00
|
|
|
homepage = "https://github.com/stainless-steel/sqlite"
|
|
|
|
repository = "https://github.com/stainless-steel/sqlite"
|
2017-08-22 17:48:48 +02:00
|
|
|
readme = "README.md"
|
2017-01-25 17:16:42 +01:00
|
|
|
categories = ["api-bindings", "database"]
|
|
|
|
keywords = ["database"]
|
2021-09-02 19:20:43 +03:00
|
|
|
edition = "2018"
|
2015-06-12 15:01:12 -04:00
|
|
|
|
2020-09-17 21:19:03 +03:00
|
|
|
[lib]
|
2021-05-10 18:02:36 +03:00
|
|
|
name = "marine_sqlite_connector"
|
2020-09-17 21:19:03 +03:00
|
|
|
path = "src/lib.rs"
|
2016-02-28 13:11:44 +01:00
|
|
|
|
2020-09-17 21:19:03 +03:00
|
|
|
[[bin]]
|
2021-05-10 18:02:36 +03:00
|
|
|
name = "it_generator"
|
|
|
|
path = "src/it_generator.rs"
|
2016-02-28 13:11:44 +01:00
|
|
|
|
2020-09-17 21:19:03 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "test"
|
|
|
|
path = "src/test.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-09 10:09:15 +03:00
|
|
|
marine-rs-sdk = "0.7.1"
|
2023-04-27 18:51:13 +03:00
|
|
|
bytesize = "1.2.0"
|
2015-05-28 19:19:08 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-18 15:57:47 +03:00
|
|
|
marine-rs-sdk-test = "0.9.1"
|
2023-04-25 11:46:11 +03:00
|
|
|
temporary = "0.7"
|