Skip to content

Commit 7225d5a

Browse files
userFRMclaude
andcommitted
fix(extended): bump tdbe to 0.12.9 in tools/sdks Cargo.toml + lockfiles
CI's `Extended Surfaces` job runs `cargo check --locked` against each separately-locked extended-surface crate (`tools/{cli,server,mcp}`, `sdks/{python,typescript}`). Their `Cargo.toml` declared `tdbe = "0.12.8"` and the lockfiles resolved to that, so the locked check failed once tdbe rebased to `0.12.9` on this branch. Lift the pin to `0.12.9` and refresh each lockfile so the locked builds pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 966827c commit 7225d5a

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

sdks/python/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ doc = false
1919
[dependencies]
2020
# The Rust SDK we're wrapping
2121
thetadatadx = { path = "../../crates/thetadatadx" }
22-
tdbe = { version = "0.12.8", path = "../../crates/tdbe" }
22+
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
2323

2424
# Direct prost dep for decoding `thetadatadx::proto::ResponseData` bytes in
2525
# the `decode_response_bytes` hook. The main crate no longer re-exports

sdks/typescript/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
thetadatadx = { path = "../../crates/thetadatadx" }
16-
tdbe = { version = "0.12.8", path = "../../crates/tdbe" }
16+
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
1717

1818
napi = { version = "3.8.5", features = ["async", "tokio_rt", "serde-json", "napi6", "chrono_date"] }
1919
napi-derive = "3.5.4"

tools/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "src/main.rs"
2121

2222
[dependencies]
2323
thetadatadx = { path = "../../crates/thetadatadx" }
24-
tdbe = { version = "0.12.8", path = "../../crates/tdbe" }
24+
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
2525
json_canon = { version = "0.1.0", path = "../../crates/json_canon" }
2626
clap = { version = "4.6.1", features = ["derive"] }
2727
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros"] }

tools/mcp/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212

1313
[dependencies]
1414
thetadatadx = { path = "../../crates/thetadatadx" }
15-
tdbe = { version = "0.12.8", path = "../../crates/tdbe" }
15+
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
1616
json_canon = { version = "0.1.0", path = "../../crates/json_canon" }
1717
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros", "io-util", "io-std"] }
1818
serde = { version = "1.0.228", features = ["derive"] }

tools/server/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "src/main.rs"
2121
[dependencies]
2222
thetadatadx = { path = "../../crates/thetadatadx", features = ["config-file"] }
2323
rustls = { version = "0.23.38", features = ["ring"] }
24-
tdbe = { version = "0.12.8", path = "../../crates/tdbe" }
24+
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
2525
json_canon = { version = "0.1.0", path = "../../crates/json_canon" }
2626
axum = { version = "0.8.9", features = ["ws"] }
2727
tokio = { version = "1.52.1", features = ["full"] }

0 commit comments

Comments
 (0)