-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 745 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 745 Bytes
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
[package]
name = "axum-graphql-prisma"
version = "0.1.0"
edition = "2021"
# change to whatever you name your package
default-run = "axum-graphql-prisma"
[workspace]
resolver = "2"
members = ["prisma-cli"]
[dependencies]
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.8", features = [
# See more: https://prisma.brendonovich.dev/writing-data/create#create-many
# 'sqlite-create-many',
# See more: https://prisma.brendonovich.dev/extra/migrations
"migrations",
"sqlite",
], default-features = false }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
axum = "0.6.16"
dotenv = "0.15.0"
async-graphql = "5.0.7"
async-graphql-axum = "5.0.7"