42 lines
1.0 KiB
TOML
Raw Normal View History

2015-05-28 17:21:43 -04:00
[package]
2020-09-17 21:28:40 +03:00
name = "fce-sqlite-connector"
2021-03-12 19:14:46 +03:00
version = "0.3.0"
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"]
2020-09-17 21:19:03 +03:00
[lib]
2020-09-17 21:28:40 +03:00
name = "fce_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]]
name = "wit_generator"
path = "src/wit_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]
2021-04-27 18:29:36 +03:00
fluence = "0.6.1"
2015-05-28 19:19:08 -04:00
[dev-dependencies]
2021-03-03 15:22:47 +03:00
temporary = "0.6"