3 Commits

Author SHA1 Message Date
sam_oneal 53cc4ee321 updated the runner to utilize caching
CI / Detect changed paths (pull_request) Successful in 11s
CI / Odin unit tests and build (pull_request) Successful in 1m18s
CI / API unit tests and lint (pull_request) Has been skipped
CI / Infra unit tests, vet, and preview (pull_request) Successful in 1m13s
2026-09-06 14:08:56 -06:00
sam_oneal d227296e77 updated procedures in data.odin to pass url; added research notes for data-streaming
CI / Detect changed paths (pull_request) Successful in 6s
CI / Odin unit tests and build (pull_request) Successful in 1m28s
CI / API unit tests and lint (pull_request) Has been skipped
CI / Infra unit tests, vet, and preview (pull_request) Successful in 1m36s
2026-09-06 19:57:31 +00:00
sam_oneal 060098c673 added data file to store API objects and reaching out to API 2026-09-06 19:57:31 +00:00
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -558,15 +558,14 @@ dependencies = [
[[package]]
name = "tower-http"
version = "0.7.1"
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08a05a66a4fdd61cbbe0a1d755ffe0ca6aba159dd4820936a0ff8a8278245b9c"
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
dependencies = [
"bitflags",
"bytes",
"http",
"http-body",
"percent-encoding",
"pin-project-lite",
"tower-layer",
"tower-service",
+1 -1
View File
@@ -10,7 +10,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.7", features = ["cors", "trace"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
anyhow = "1"
[dev-dependencies]