-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
36 lines (31 loc) · 1.01 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
[package]
name = "rusqlite-from-row"
description = "Derivable trait that allows converting a rusqlite row to a struct"
documentation = "https://docs.rs/rusqlite-from-row"
readme = "README.md"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
license-file.workspace = true
keywords.workspace = true
categories.workspace = true
[lib]
doctest = false
[workspace]
members = ["rusqlite-from-row-derive"]
[workspace.package]
version = "0.2.4"
authors = ["Remo Pas <[email protected]>"]
edition = "2021"
repository = "https://github.com/remkop22/rusqlite-from-row"
homepage = "https://github.com/remkop22/rusqlite-from-row"
license-file = "LICENSE"
keywords = ["rusqlite", "sqlite", "from-row", "mapper"]
categories = ["database", "parsing", "data-structures"]
[workspace.dependencies]
rusqlite-from-row-derive = { path = "rusqlite-from-row-derive", version = "=0.2.4" }
[dependencies]
rusqlite-from-row-derive.workspace = true
rusqlite = ">=0.27,<=0.31"