Skip to content
Open
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ opentelemetry-otlp = { version = "0.30.0", default-features = fa
opentelemetry-semantic-conventions = { version = "0.30.0", default-features = false }
opentelemetry_sdk = { version = "0.30.0", default-features = false }
owo-colors = { version = "4.2.3", default-features = false }
oxc = { version = "0.95.0", default-features = false }
oxc = { version = "0.105.0", default-features = false }
Copy link

Choose a reason for hiding this comment

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

Version update ineffective due to patch override

The version change from 0.95.0 to 0.105.0 in workspace dependencies will have no effect because a [patch.crates-io] section at line 389 overrides the oxc crate with a git fork at revision 73c781b (which is version 0.95.0). Cargo's patch mechanism takes precedence over version specifications, so the actual dependency version will remain unchanged. The patch section needs to be updated or removed for the version update to take effect.

Fix in Cursor Fix in Web

pin-project = { version = "1.1.10", default-features = false }
pin-project-lite = { version = "0.2.16", default-features = false }
postgres-protocol = { version = "0.6.9", default-features = false }
Expand Down
Loading