Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Bash(git status:*)",
"mcp__plugin_chrome-devtools-mcp_chrome-devtools__new_page",
"mcp__plugin_chrome-devtools-mcp_chrome-devtools__performance_stop_trace",
"mcp__plugin_chrome-devtools-mcp_chrome-devtools__evaluate_script",
"mcp__plugin_chrome-devtools-mcp_chrome-devtools__evaluate_script"
]
},
"enabledPlugins": {
Expand Down
46 changes: 26 additions & 20 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ config = "0.15.19"
cookie = "0.18.1"
derive_more = { version = "2.0", features = ["display", "error"] }
ed25519-dalek = { version = "2.2", features = ["rand_core"] }
edgezero-adapter-axum = { git = "https://github.com/stackpop/edgezero", rev = "170b74b", default-features = false }
edgezero-adapter-cloudflare = { git = "https://github.com/stackpop/edgezero", rev = "170b74b", default-features = false }
edgezero-adapter-fastly = { git = "https://github.com/stackpop/edgezero", rev = "170b74b", default-features = false }
edgezero-core = { git = "https://github.com/stackpop/edgezero", rev = "170b74b", default-features = false }
edgezero-adapter-axum = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-cloudflare = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-fastly = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-core = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔧 wrench — Workspace deps pinned to branch = "main"

All four edgezero-* deps moved from rev = "170b74b" to branch = "main". Cargo.lock records the resolved commit, but anyone running cargo update will silently pull whatever is on upstream main that minute — CI/local builds become non-deterministic and create a supply-chain path from an external repo into prod.

Fix: pin to the specific upstream commit that introduced dispatch_with_config instead of a moving branch.

edgezero-adapter-axum       = { git = "https://github.com/stackpop/edgezero", rev = "<sha>", default-features = false }
edgezero-adapter-cloudflare = { git = "https://github.com/stackpop/edgezero", rev = "<sha>", default-features = false }
edgezero-adapter-fastly     = { git = "https://github.com/stackpop/edgezero", rev = "<sha>", default-features = false }
edgezero-core               = { git = "https://github.com/stackpop/edgezero", rev = "<sha>", default-features = false }

If upstream is unreleased, mirror the required change into a fork tag.

error-stack = "0.6"
fastly = "0.11.12"
fern = "0.7.1"
Expand All @@ -86,7 +86,7 @@ subtle = "2.6"
temp-env = "0.3.6"
tokio = { version = "1.49", features = ["sync", "macros", "io-util", "rt", "time"] }
tokio-test = "0.4"
toml = "1.0"
toml = "1.1"
url = "2.5.8"
urlencoding = "2.1"
uuid = { version = "1.18", features = ["v4"] }
Expand Down
Loading
Loading