14 lines
339 B
TOML
14 lines
339 B
TOML
[package]
|
|
name = "graphql_demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
diesel = { version = "2.1.0", features = ["postgres", "r2d2"] }
|
|
dotenvy = "0.15.7"
|
|
juniper = "0.16.1"
|
|
juniper_rocket = "0.9.0"
|
|
rocket = { version = "0.5.0" }
|