From 3dd9067947e142af32bafebdd7e6443b1e54e6ad Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Tue, 6 Feb 2024 15:25:14 +0800 Subject: [PATCH] `starters/*` use local `loco-rs` --- starters/lightweight-service/Cargo.toml | 4 ++-- starters/rest-api/Cargo.toml | 4 ++-- starters/rest-api/migration/Cargo.toml | 2 +- starters/saas/Cargo.toml | 4 ++-- starters/saas/migration/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/starters/lightweight-service/Cargo.toml b/starters/lightweight-service/Cargo.toml index 2d90a6593..fd0033c8e 100644 --- a/starters/lightweight-service/Cargo.toml +++ b/starters/lightweight-service/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] -loco-rs = { version = "0.2.3", default-features = false, features = ["cli"] } +loco-rs = { version = "*", path = "../../", default-features = false, features = ["cli"] } serde = "*" serde_json = "*" eyre = "*" @@ -28,7 +28,7 @@ required-features = [] [dev-dependencies] serial_test = "*" rstest = "*" -loco-rs = { version = "0.2.3", default-features = false, features = [ +loco-rs = { version = "*", path = "../../", default-features = false, features = [ "testing", "cli", ] } diff --git a/starters/rest-api/Cargo.toml b/starters/rest-api/Cargo.toml index 01533d99c..23130f165 100644 --- a/starters/rest-api/Cargo.toml +++ b/starters/rest-api/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] -loco-rs = { version = "0.2.3" } +loco-rs = { version = "*", path = "../../" } migration = { path = "migration" } serde = { version = "1", features = ["derive"] } @@ -40,5 +40,5 @@ required-features = [] [dev-dependencies] serial_test = "2.0.0" rstest = "0.18.2" -loco-rs = { version = "0.2.3", features = ["testing"] } +loco-rs = { version = "*", path = "../../", features = ["testing"] } insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] } diff --git a/starters/rest-api/migration/Cargo.toml b/starters/rest-api/migration/Cargo.toml index ffe3f6406..3ce78dcf2 100644 --- a/starters/rest-api/migration/Cargo.toml +++ b/starters/rest-api/migration/Cargo.toml @@ -10,7 +10,7 @@ path = "src/lib.rs" [dependencies] async-std = { version = "1", features = ["attributes", "tokio1"] } -loco-rs = { version = "0.2.3" } +loco-rs = { version = "*", path = "../../../" } [dependencies.sea-orm-migration] version = "1.0.0-rc.1" diff --git a/starters/saas/Cargo.toml b/starters/saas/Cargo.toml index 01533d99c..23130f165 100644 --- a/starters/saas/Cargo.toml +++ b/starters/saas/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" [dependencies] -loco-rs = { version = "0.2.3" } +loco-rs = { version = "*", path = "../../" } migration = { path = "migration" } serde = { version = "1", features = ["derive"] } @@ -40,5 +40,5 @@ required-features = [] [dev-dependencies] serial_test = "2.0.0" rstest = "0.18.2" -loco-rs = { version = "0.2.3", features = ["testing"] } +loco-rs = { version = "*", path = "../../", features = ["testing"] } insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] } diff --git a/starters/saas/migration/Cargo.toml b/starters/saas/migration/Cargo.toml index ffe3f6406..3ce78dcf2 100644 --- a/starters/saas/migration/Cargo.toml +++ b/starters/saas/migration/Cargo.toml @@ -10,7 +10,7 @@ path = "src/lib.rs" [dependencies] async-std = { version = "1", features = ["attributes", "tokio1"] } -loco-rs = { version = "0.2.3" } +loco-rs = { version = "*", path = "../../../" } [dependencies.sea-orm-migration] version = "1.0.0-rc.1"