forked from cornucopia-rs/cornucopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.05 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
37
38
[package]
name = "cornucopia"
version = "0.6.1"
edition = "2021"
license = "MIT"
description = "Generate type checked Rust from your SQL"
homepage = "https://github.com/LouisGariepy/cornucopia"
repository = "https://github.com/LouisGariepy/cornucopia"
readme = "README.md"
categories = ["database"]
keywords = ["postgresql", "query", "generator", "sql", "tokio-postgres"]
[workspace]
members = ["examples/*", "cornucopia_client"]
[dependencies]
cornucopia_client = "0.1.0"
tokio = { version = "1.18.1", features = ["full"] }
deadpool-postgres = "0.10.2"
tokio-postgres = { version = "0.7.6", features = [
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
"with-eui48-1",
] }
postgres-types = { version = "0.2.3", features = ["derive"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.80"
time = { version = "0.3.9", features = ["parsing"] }
uuid = "1.0.0"
eui48 = "1.1.0"
thiserror = "1.0.31"
clap = { version = "3.1.15", features = ["derive"] }
pest = "2.1.3"
pest_derive = "2.1.0"
heck = "0.4.0"
async-recursion = "1.0.0"