Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sentry from 0.35.0 to 0.36.0 #206

Merged
merged 1 commit into from
Jan 7, 2025

Bump sentry from 0.35.0 to 0.36.0

8e33aef
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Bump sentry from 0.35.0 to 0.36.0 #206

Bump sentry from 0.35.0 to 0.36.0
8e33aef
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 7, 2025 in 0s

clippy

2 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 2
Note 0
Help 0

Versions

  • rustc 1.84.0-beta.6 (953a5caef 2025-01-03)
  • cargo 1.84.0-beta.6 (66221abde 2024-11-19)
  • clippy 0.1.84 (953a5caef0 2025-01-03)

Annotations

Check warning on line 48 in launch_configuration/src/lib.rs

@github-actions github-actions / clippy

field `path` is never read

warning: field `path` is never read
  --> launch_configuration/src/lib.rs:48:5
   |
47 | struct Folder {
   |        ------ field in this struct
48 |     path: String,
   |     ^^^^

Check warning on line 40 in launch_configuration/src/lib.rs

@github-actions github-actions / clippy

fields `folders` and `settings` are never read

warning: fields `folders` and `settings` are never read
  --> launch_configuration/src/lib.rs:40:9
   |
39 |     VsCodeWorkspace {
   |     --------------- fields in this variant
40 |         folders: Vec<Folder>,
   |         ^^^^^^^
41 |         settings: HashMap<String, serde_json::Value>,
   |         ^^^^^^^^
   |
   = note: `#[warn(dead_code)]` on by default