Skip to content

Commit d43343e

Browse files
chore(deps): keep a version alongside the onpair git pin
The onpair dep was a bare git rev with no `version`, which fails the publish dry-run CI job (Cargo requires a version to package/publish). Add `version = "0.1.0"` alongside the pin; Cargo only checks a version is present, so local builds still resolve the pinned commit. Matches the tpchgen pattern below. Signed-off-by: Francesco Gargiulo <francesco@spiraldb.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent e5705e8 commit d43343e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ num_enum = { version = "0.7.3", default-features = false }
192192
object_store = { version = "0.13.2", default-features = false }
193193
once_cell = "1.21"
194194
oneshot = { version = "0.2.0", features = ["async"] }
195-
onpair = { git = "https://github.com/spiraldb/onpair.git", rev = "28df115c799674c663adedc8f81620ac82c7a890" }
195+
onpair = { version = "0.1.0", git = "https://github.com/spiraldb/onpair.git", rev = "28df115c799674c663adedc8f81620ac82c7a890" }
196196
opentelemetry = "0.32.0"
197197
opentelemetry-otlp = "0.32.0"
198198
opentelemetry_sdk = "0.32.0"

0 commit comments

Comments
 (0)