forked from cornucopia-rs/cornucopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 983 Bytes
/
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
[package]
name = "cornucopia"
version = "0.7.4"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Generate type checked Rust from your SQL"
homepage = "https://github.com/cornucopia-rs/cornucopia"
repository = "https://github.com/cornucopia-rs/cornucopia"
readme = "README.md"
categories = ["database"]
keywords = ["postgresql", "query", "generator", "sql", "tokio-postgres"]
[workspace]
members = ["examples/*", "cornucopia_client", "integration", "codegen_test"]
[dependencies]
postgres = { version = "0.19.3", features = [
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
"with-eui48-1",
] }
postgres-types = { version = "0.2.3", features = ["derive"] }
time = { version = "0.3.9", features = ["parsing"] }
thiserror = "1.0.31"
clap = { version = "3.1.18", features = ["derive"] }
pest = "2.1.3"
pest_derive = "2.1.0"
heck = "0.4.0"
indexmap = "1.8.2"
prettyplease = "0.1.11"
syn = { version = "1.0.95", features = ["parsing"] }
chumsky = "0.8.0"