Skip to content

Commit

Permalink
Introduce orb-http-client
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Preibisch committed Jan 8, 2025
1 parent 269316e commit 66b2999
Show file tree
Hide file tree
Showing 7 changed files with 966 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
"hil",
"jwk-util",
"mcu-interface",
"mcu-util",
"mcu-util", "orb-http-client",
"qr-link",
"security-utils",
"seek-camera/sys",
Expand Down
20 changes: 20 additions & 0 deletions orb-http-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "orb-http-client"
version = "0.1.0"
edition = "2021"

[dependencies]
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
opentelemetry = { version = "0.21", features = ["trace"] }
tracing = "0.1.40"
tracing-opentelemetry = "0.22"
color-eyre = { workspace = true }
orb-telemetry = { workspace = true }
orb-security-utils = { workspace = true, features = ["reqwest"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22.1"
hyper = "1.4.1"

[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
Loading

0 comments on commit 66b2999

Please sign in to comment.