forked from remkop22/postgres-from-row
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 1.07 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 = "postgres-from-row"
description = "Derivable trait that allows converting a postgres row to a struct"
documentation = "https://docs.rs/postgres-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 = ["postgres-from-row-derive"]
[workspace.package]
version = "0.5.2"
authors = ["Remo Pas <[email protected]>"]
edition = "2021"
repository = "https://github.com/remkop22/postgres-from-row"
homepage = "https://github.com/remkop22/postgres-from-row"
license-file = "LICENSE"
keywords = ["postgres", "postgres-tokio", "postgresql", "from-row", "mapper"]
categories = ["database", "parsing", "data-structures"]
[workspace.dependencies]
postgres-from-row-derive = { path = "postgres-from-row-derive", version = "=0.5.2" }
[dependencies]
tokio-postgres = { version = "0.7.8", default_features = false }
postgres-from-row-derive.workspace = true