Skip to content

Commit 65260c9

Browse files
committed
fix workspace version build error
1 parent 409a607 commit 65260c9

6 files changed

Lines changed: 6 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ async-trait = { version = "0.1.88" }
3131
serde = "1.0.219"
3232
serde_json = "1.0.140"
3333
strum = { version = "0.27", features = ["derive"] }
34+
acts = { version = "0.17.2", path = "./acts" }
3435

3536
[profile.release]
3637
codegen-units = 1

plugins/http/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace = true
99
edition.workspace = true
1010

1111
[dependencies]
12-
acts = { path = "../../acts" }
12+
acts = { workspace = true }
1313
async-trait = { workspace = true }
1414
base64 = "0.22.1"
1515
reqwest = { version = "0.12.18", features = ["blocking", "json"] }

plugins/shell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace = true
99
edition.workspace = true
1010

1111
[dependencies]
12-
acts = { path = "../../acts" }
12+
acts = { workspace = true }
1313
async-trait = { workspace = true }
1414
serde = { workspace = true }
1515
tokio = { workspace = true }

plugins/state/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository.workspace = true
1111

1212
[dependencies]
1313
redis = { version = "0.31.0", default-features = false }
14-
acts = { path = "../../acts" }
14+
acts = { version = "0.17.2", path = "../../acts" }
1515
serde = { workspace = true }
1616
serde_json = { workspace = true }
1717
async-trait = { workspace = true }

store/postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010

1111

1212
[dependencies]
13-
acts = { version = "0.17.0", path = "../../acts" }
13+
acts = { workspace = true }
1414
futures = "0.3.31"
1515
sea-query = { version = "0.32.4" }
1616
sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio"] }

store/sqlite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010

1111

1212
[dependencies]
13-
acts = { version = "0.17.0", path = "../../acts" }
13+
acts = { workspace = true }
1414
r2d2 = "0.8.10"
1515
r2d2_sqlite = { version = "0.25", features = ["bundled"] }
1616
rusqlite = { version = "0.32", features = ["bundled"] }

0 commit comments

Comments
 (0)