Skip to content

Commit 47cfffa

Browse files
committed
sigv4
1 parent 7d950be commit 47cfffa

File tree

9 files changed

+372
-230
lines changed

9 files changed

+372
-230
lines changed

Cargo.lock

Lines changed: 53 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,4 @@ reqwest = { git = "https://github.com/golemcloud/reqwest", branch = "update-may-
2626
serde = { version = "1.0", features = ["derive"] }
2727
serde_json = { version = "1.0" }
2828
wit-bindgen-rt = { version = "0.40.0", features = ["bitflags"] }
29-
base64 = { version = "0.22.1" }
30-
hex = { version = "0.4" }
31-
hmac = { version = "0.12" }
32-
sha2 = { version = "0.10" }
33-
chrono = { version = "0.4", features = ["serde"] }
29+
base64 = { version = "0.22.1" }

llm/Makefile.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,8 @@ golem-cli --version
230230
golem-cli app clean
231231
golem-cli app build -b anthropic-debug
232232
golem-cli app clean
233+
golem-cli app build -b bedrock-debug
234+
golem-cli app clean
233235
golem-cli app build -b grok-debug
234236
golem-cli app clean
235237
golem-cli app build -b openai-debug

llm/bedrock/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ serde = { workspace = true }
2525
serde_json = { workspace = true }
2626
wit-bindgen-rt = { workspace = true }
2727
base64 = { workspace = true }
28-
hex = { workspace = true }
29-
hmac = { workspace = true }
30-
sha2 = { workspace = true }
31-
chrono = { workspace = true }
28+
hmac = "0.12"
29+
sha2 = "0.10"
30+
time = { version = "0.3", features = ["formatting"] }
3231

3332
[package.metadata.component]
3433
package = "golem:llm-bedrock"

0 commit comments

Comments
 (0)