spacedrive/Cargo.toml

50 lines
1.7 KiB
TOML
Raw Normal View History

2022-03-30 08:14:50 +00:00
[workspace]
resolver = "2"
2022-03-30 08:14:50 +00:00
members = [
"core",
"crates/*",
2022-10-08 18:30:17 +00:00
# "crates/p2p/tunnel",
# "crates/p2p/tunnel/utils",
"apps/cli",
"apps/desktop/src-tauri",
"apps/desktop/crates/*",
"apps/mobile/crates/*",
"apps/server",
2022-03-30 08:14:50 +00:00
]
[workspace.dependencies]
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "4eba61cafa31b5ac3638fee9e0d7e7d8304d6e47", features = [
"rspc",
"sqlite-create-many",
"migrations",
"sqlite",
2023-04-28 17:56:08 +00:00
] }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "4eba61cafa31b5ac3638fee9e0d7e7d8304d6e47", features = [
"rspc",
"sqlite-create-many",
"migrations",
"sqlite",
2023-04-28 17:56:08 +00:00
] }
prisma-client-rust-sdk = { git = "https://github.com/Brendonovich/prisma-client-rust", rev = "4eba61cafa31b5ac3638fee9e0d7e7d8304d6e47", features = [
2023-01-05 07:11:55 +00:00
"sqlite",
2023-04-28 17:56:08 +00:00
] }
2022-10-21 21:43:39 +00:00
rspc = { version = "0.1.4" }
specta = { version = "1.0.3" }
httpz = { version = "0.0.3" }
2023-03-13 14:53:28 +00:00
swift-rs = { version = "1.0.1" }
tokio = { version = "1.25.0" }
[patch.crates-io]
# We use this patch so we can compile for the IOS simulator on M1
openssl-sys = { git = "https://github.com/spacedriveapp/rust-openssl", rev = "92c3dec225a9e984884d5b30a517e5d44a24d03b" }
# We patch this so that it can be built for IOS - The `main` branch uses macOS specific APIs
if-watch = { git = "https://github.com/oscartbeaumont/if-watch", rev = "410e8e1d2d0730f1441df1c29294fec4c3c04193" }
mdns-sd = { git = "https://github.com/oscartbeaumont/mdns-sd", rev = "45515a98e9e408c102871abaa5a9bff3bee0cbe8" } # TODO: Do upstream PR
2023-04-25 15:51:48 +00:00
rspc = { git = "https://github.com/oscartbeaumont/rspc", rev = "3e2608e9658b54240a3ba076fb0f7c4307e094fc" }
httpz = { git = "https://github.com/oscartbeaumont/httpz", rev = "a5185f2ed2fdefeb2f582dce38a692a1bf76d1d6" }