Skip to content

Commit

Permalink
starters/* use local loco-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Feb 6, 2024
1 parent 8dbf0b9 commit 3dd9067
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions starters/lightweight-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "*"
Expand All @@ -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",
] }
Expand Down
4 changes: 2 additions & 2 deletions starters/rest-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion starters/rest-api/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions starters/saas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion starters/saas/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3dd9067

Please sign in to comment.