-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.06 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
35
36
37
38
39
40
41
[workspace]
resolver = "2"
members = [
"crates/*",
# "common/*",
"prisma",
# "crates/p2p/tunnel",
# "crates/p2p/tunnel/utils",
# "apps/cli",
"apps/desktop/src-tauri",
# "apps/desktop/crates/*",
# "apps/mobile/crates/*",
"apps/server",
]
[workspace.dependencies]
anyhow = "1.0.70"
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", branch = "spacedrive", features = [
"rspc",
"sqlite-create-many",
"migrations",
"sqlite",
], default-features = false }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", branch = "spacedrive", features = [
"rspc",
"sqlite-create-many",
"migrations",
"sqlite",
], default-features = false }
serde = { version = "1.0.160", features = ["std", "derive"] }
rspc = { version = "0.1.3" }
# specta = { version = "0.0.6" }
# httpz = { version = "0.0.3" }
# swift-rs = { version = "1.0.1" }
tokio = { version = "1.25.0", features = ["sync", "rt-multi-thread", "signal"] }
# [patch.crates-io]
# specta = { git = "https://github.com/oscartbeaumont/specta" }