From 3bd95120983dbdb0baeebf696452cb7d514a3b70 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Tue, 14 Oct 2025 23:23:30 -0700 Subject: [PATCH] (chore): CI fix --- core/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 2d0f7d5c1..59ae92bf1 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -42,7 +42,7 @@ sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite"] } int-enum = "1.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -specta = { path = "../../specta/specta", features = [ +specta = { git = "https://github.com/jamiepine/specta", branch = "better-swift-gen", features = [ "chrono", "derive", "export", @@ -50,9 +50,9 @@ specta = { path = "../../specta/specta", features = [ "serde_json", "uuid" ] } -specta-serde = { path = "../../specta/specta-serde" } -specta-swift = { path = "../../specta/specta-swift" } -specta-typescript = { path = "../../specta/specta-typescript" } +specta-serde = { git = "https://github.com/jamiepine/specta", branch = "better-swift-gen" } +specta-swift = { git = "https://github.com/jamiepine/specta", branch = "better-swift-gen" } +specta-typescript = { git = "https://github.com/jamiepine/specta", branch = "better-swift-gen" } strum = { version = "0.26", features = ["derive"] } toml = "0.8"