45 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2015-05-28 17:21:43 -04:00
[package]
2021-05-10 18:02:36 +03:00
name = "marine-sqlite-connector"
version = "0.9.4"
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"
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]
fix(deps): update rust crate marine-rs-sdk to 0.10.3 (#51) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [marine-rs-sdk](https://togithub.com/fluencelabs/marine-rs-sdk) | dependencies | patch | `0.10.2` -> `0.10.3` | --- ### Release Notes <details> <summary>fluencelabs/marine-rs-sdk (marine-rs-sdk)</summary> ### [`v0.10.3`](https://togithub.com/fluencelabs/marine-rs-sdk/blob/HEAD/CHANGELOG.md#0103-2023-12-27) [Compare Source](https://togithub.com/fluencelabs/marine-rs-sdk/compare/marine-rs-sdk-v0.10.2...marine-rs-sdk-v0.10.3) ##### Features - **call-parameters:** optional rkyv support ([#&#8203;148](https://togithub.com/fluencelabs/marine-rs-sdk/issues/148)) ([22863bc](https://togithub.com/fluencelabs/marine-rs-sdk/commit/22863bc94f620fcd9fee4dc1476a71248cc94963)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/fluencelabs/sqlite-wasm-connector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-29 01:28:24 +00:00
marine-rs-sdk = "0.10.3"
bytesize = "1.3.0"
2015-05-28 19:19:08 -04:00
[dev-dependencies]
marine-rs-sdk-test = "0.12.1"
temporary = "0.7"