forked from Brendonovich/prisma-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 1.27 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
[workspace]
exclude = ["crates/cli", "crates/sdk/example"]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
prisma-client-rust = { path = "crates/lib" }
dmmf = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
prisma-models = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
psl = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
query-core = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
request-handlers = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
schema-core = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
user-facing-errors = { git = "https://github.com/spacedriveapp/prisma-engines.git", rev = "9a8a66a446" }
convert_case = "0.6.0"
proc-macro2 = "1.0"
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = "2.0"
# We don't lock version cause PCR only depends on `derive(Type)` so it should be fine.
specta = "^2.0.0-rc"
thiserror = "1.0"
[workspace.dependencies.rspc]
git = "https://github.com/spacedriveapp/rspc.git"
rev = "6a77167495"