forked from Brendonovich/prisma-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 1.21 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
[package]
name = "prisma-client-rust"
version = "0.3.1"
authors = ["Brendan Allan <[email protected]>"]
edition = "2021"
description = "A prisma client for Rust"
license = "MIT"
exclude = [
"examples"
]
[workspace]
members = [
"cli",
"examples/*",
"integration-tests"
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.19", features = ["serde"] }
thiserror = "1.0.30"
query-core = { git = "https://github.com/Brendonovich/prisma-engines", rev = "8c1da2fdc058b7af8905a61491856cade06f952f" }
query-connector = { git = "https://github.com/Brendonovich/prisma-engines", rev = "8c1da2fdc058b7af8905a61491856cade06f952f" }
request-handlers = { git = "https://github.com/Brendonovich/prisma-engines", rev = "8c1da2fdc058b7af8905a61491856cade06f952f" }
prisma-models = { git = "https://github.com/Brendonovich/prisma-engines", rev = "8c1da2fdc058b7af8905a61491856cade06f952f" }
datamodel = { git = "https://github.com/Brendonovich/prisma-engines", rev = "8c1da2fdc058b7af8905a61491856cade06f952f" }
graphql-parser = { git = "https://github.com/prisma/graphql-parser", rev = "6a3f58bd879065588e710cb02b5bd30c1ce182c3" }
[dev-dependencies]
rand = "0.8.5"