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
46 changes: 40 additions & 6 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 crates/crashtracker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ path = "src/bin/receiver.rs"
anyhow = "1"
libdd-crashtracker = { git = "https://github.com/DataDog/libdatadog.git", tag = "v35.0.0" }
napi = { version = "2", features = ["serde-json"] }
napi-derive = { version = "2", default-features = false }
napi-derive = { version = "3", default-features = false }

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Keep napi-derive within the pinned Rust toolchain

This bumps napi-derive to the 3.x line, but napi-derive 3.5.6 declares rust-version = "1.88" in its upstream Cargo manifest while this repo pins Rust 1.87.0 in rust-toolchain.toml. Any normal cargo build/CI path that honors the repo toolchain will reject the dependency before compiling, so the native crates stop building unless the toolchain is upgraded in the same change or the dependency is kept on a 1.87-compatible release.

Useful? React with 👍 / 👎.

rustls = { version = "*", default-features = false, features = ["aws-lc-rs"] }
serde_json = "1"
2 changes: 1 addition & 1 deletion crates/process_discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ anyhow = "1"
libdd-library-config = { git = "https://github.com/DataDog/libdatadog.git", tag = "v35.0.0", features = ["otel-thread-ctx"] }

napi = { version = "2" }
napi-derive = { version = "2", default-features = false }
napi-derive = { version = "3", default-features = false }
Loading