Skip to content

Commit 96d39d8

Browse files
authored
Pinned internal dependencies (#1256)
1 parent d22a30c commit 96d39d8

File tree

20 files changed

+84
-84
lines changed

20 files changed

+84
-84
lines changed

golem-api-grpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ description = "GRPC API for Golem services"
1111
harness = false
1212

1313
[dependencies]
14-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0", default-features = false, features = ["protobuf"] }
15-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false, features = ["host-bindings", "protobuf"] }
14+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0", default-features = false, features = ["protobuf"] }
15+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false, features = ["host-bindings", "protobuf"] }
1616

1717
async-trait = { workspace = true }
1818
bincode = { workspace = true }

golem-cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ path = "tests/main.rs"
2323
harness = false
2424

2525
[dependencies]
26-
golem-client = { path = "../golem-client", version = "0.0.0" }
27-
golem-common = { path = "../golem-common", version = "0.0.0", default-features = false }
28-
golem-rib = { path = "../golem-rib", version = "0.0.0", default-features = false }
29-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0", default-features = false, features = ["analysis"] }
30-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false }
31-
golem-wasm-rpc-stubgen = { path = "../wasm-rpc-stubgen", version = "0.0.0" }
26+
golem-client = { path = "../golem-client", version = "=0.0.0" }
27+
golem-common = { path = "../golem-common", version = "=0.0.0", default-features = false }
28+
golem-rib = { path = "../golem-rib", version = "=0.0.0", default-features = false }
29+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0", default-features = false, features = ["analysis"] }
30+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false }
31+
golem-wasm-rpc-stubgen = { path = "../wasm-rpc-stubgen", version = "=0.0.0" }
3232

3333
anyhow.workspace = true
3434
assert2 = { workspace = true }
@@ -45,7 +45,7 @@ derive_more = { workspace = true }
4545
dirs = "5.0.1"
4646
futures-util = { workspace = true }
4747
glob = "0.3.1"
48-
golem-examples = "1.1.1"
48+
golem-examples = "=1.1.1"
4949
h2 = "0.4.7"
5050
http = { workspace = true }
5151
humansize = { workspace = true }
@@ -84,7 +84,7 @@ walkdir = "2.5.0"
8484
wasm-wave = { workspace = true }
8585

8686
[dev-dependencies]
87-
golem-test-framework = { path = "../golem-test-framework", version = "0.0.0" }
87+
golem-test-framework = { path = "../golem-test-framework", version = "=0.0.0" }
8888

8989
async-recursion = { workspace = true }
9090
env_logger = "0.11.5"

golem-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ include = ["src/**/*", "Cargo.toml", "build.rs", "openapi/**/*"]
1313
harness = false
1414

1515
[dependencies]
16-
golem-common = { path = "../golem-common", version = "0.0.0", default-features = false }
17-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0", default-features = false, features = ["analysis"] }
18-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false }
16+
golem-common = { path = "../golem-common", version = "=0.0.0", default-features = false }
17+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0", default-features = false, features = ["analysis"] }
18+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false }
1919

2020
async-trait = { workspace = true }
2121
bytes = { workspace = true }

golem-common/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ tokio = ["dep:tokio"]
2222
harness = false
2323

2424
[dependencies]
25-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0", optional = true }
26-
golem-rib = { path = "../golem-rib", version = "0.0.0", default-features = false, features = ["protobuf", "poem", "json_in_errors"] } # TODO: make these optionals
27-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0", default-features = false, features = ["metadata"] }
28-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false, features = ["host"] }
25+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0", optional = true }
26+
golem-rib = { path = "../golem-rib", version = "=0.0.0", default-features = false, features = ["protobuf", "poem", "json_in_errors"] } # TODO: make these optionals
27+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0", default-features = false, features = ["metadata"] }
28+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false, features = ["host"] }
2929

3030
anyhow = { workspace = true }
3131
async-trait = { workspace = true }

golem-component-compilation-service/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ path = "src/server.rs"
1414
test = false
1515

1616
[dependencies]
17-
golem-api-grpc = { version = "0.0.0", path = "../golem-api-grpc" }
18-
golem-common = { version = "0.0.0", path = "../golem-common" }
19-
golem-service-base = { path = "../golem-service-base" }
20-
golem-worker-executor-base = { version = "0.0.0", path = "../golem-worker-executor-base" }
17+
golem-api-grpc = { version = "=0.0.0", path = "../golem-api-grpc" }
18+
golem-common = { version = "=0.0.0", path = "../golem-common" }
19+
golem-service-base = { version = "=0.0.0", path = "../golem-service-base" }
20+
golem-worker-executor-base = { version = "=0.0.0", path = "../golem-worker-executor-base" }
2121

2222
async-trait = { workspace = true }
2323
console-subscriber = { workspace = true }

golem-component-service-base/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ name = "tests"
1111
harness = false
1212

1313
[dependencies]
14-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0" }
15-
golem-common = { path = "../golem-common", version = "0.0.0" }
16-
golem-service-base = { path = "../golem-service-base" }
17-
golem-rib = { path = "../golem-rib" }
18-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0" }
14+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0" }
15+
golem-common = { path = "../golem-common", version = "=0.0.0" }
16+
golem-service-base = { path = "../golem-service-base", version = "=0.0.0" }
17+
golem-rib = { path = "../golem-rib", version = "=0.0.0" }
18+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0" }
1919

2020
anyhow = { workspace = true }
2121
async-trait = { workspace = true }

golem-component-service/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ test = false
1313
harness = false
1414

1515
[dependencies]
16-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0" }
17-
golem-common = { path = "../golem-common", version = "0.0.0" }
18-
golem-component-service-base = { version = "0.0.0", path = "../golem-component-service-base" }
19-
golem-service-base = { path = "../golem-service-base" }
20-
golem-rib = {path = "../golem-rib"}
21-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0" }
22-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false, features = ["host"] }
16+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0" }
17+
golem-common = { path = "../golem-common", version = "=0.0.0" }
18+
golem-component-service-base = { path = "../golem-component-service-base", version = "=0.0.0" }
19+
golem-service-base = { path = "../golem-service-base", version = "=0.0.0" }
20+
golem-rib = { path = "../golem-rib", version = "=0.0.0" }
21+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0" }
22+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false, features = ["host"] }
2323

2424
anyhow = { workspace = true }
2525
async-trait = { workspace = true }

golem-rib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ protobuf = ["dep:golem-api-grpc", "golem-wasm-ast/protobuf", "golem-wasm-rpc/pro
1414
poem = ["dep:poem-openapi", "golem-wasm-ast/poem_openapi", "golem-wasm-ast/poem_openapi"]
1515

1616
[dependencies]
17-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0", optional = true } # TODO: remove this dependency
18-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0", default-features = false, features = ["analysis", "bincode"] }
19-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false, features = ["bincode", "typeinfo", "text"] }
17+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0", optional = true } # TODO: remove this dependency
18+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0", default-features = false, features = ["analysis", "bincode"] }
19+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false, features = ["bincode", "typeinfo", "text"] }
2020

2121
bigdecimal = { workspace = true }
2222
bincode = { workspace = true }

golem-service-base/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ autotests = false
1313
harness = false
1414

1515
[dependencies]
16-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0" }
17-
golem-common = { path = "../golem-common", version = "0.0.0" }
18-
golem-wasm-ast = { path = "../wasm-ast", version = "0.0.0" }
19-
golem-wasm-rpc = { path = "../wasm-rpc", version = "0.0.0", default-features = false, features = ["host"] }
16+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0" }
17+
golem-common = { path = "../golem-common", version = "=0.0.0" }
18+
golem-wasm-ast = { path = "../wasm-ast", version = "=0.0.0" }
19+
golem-wasm-rpc = { path = "../wasm-rpc", version = "=0.0.0", default-features = false, features = ["host"] }
2020

2121
anyhow = { workspace = true }
2222
async-fs = { workspace = true }

golem-shard-manager/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ harness = false
1414
test = false
1515

1616
[dependencies]
17-
golem-api-grpc = { path = "../golem-api-grpc", version = "0.0.0" }
18-
golem-common = { path = "../golem-common", version = "0.0.0" }
19-
golem-service-base = { path = "../golem-service-base", version = "0.0.0" }
17+
golem-api-grpc = { path = "../golem-api-grpc", version = "=0.0.0" }
18+
golem-common = { path = "../golem-common", version = "=0.0.0" }
19+
golem-service-base = { path = "../golem-service-base", version = "=0.0.0" }
2020

2121
anyhow = { workspace = true }
2222
async-rwlock = "1.3.0"

0 commit comments

Comments
 (0)