From ddcaacf32dbf27718c33a54e009e7f6a3e164cf8 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Fri, 4 Nov 2022 18:00:43 +0100 Subject: [PATCH 1/2] Bump sentry-core to 0.28 --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a2677..8fea6f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Changed +- [PR#18](https://github.com/EmbarkStudios/sentry-contrib-rust/pull/18) bumped `sentry-core` to `0.28`. + ## [0.5.0] - 2022-06-29 ### Changed - [PR#15](https://github.com/EmbarkStudios/sentry-contrib-rust/pull/15) bumped `sentry-core` to `0.27`. diff --git a/Cargo.toml b/Cargo.toml index f23b6bf..65fd395 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ debug-logs = [] [dependencies] breakpad-handler = { version = "0.1.0", path = "./breakpad-handler" } -sentry-core = { version = "0.27", features = ["client"] } +sentry-core = { version = "0.28", features = ["client"] } serde_json = "1.0" [workspace] From 2a0383b0f669439502a1da0cf9d9d648210bf098 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Fri, 4 Nov 2022 19:14:38 +0100 Subject: [PATCH 2/2] Fix deny --- Cargo.toml | 16 ++++++---------- deny.toml | 8 +++++--- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 65fd395..7d058b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,12 +10,11 @@ readme = "README.md" documentation = "https://docs.rs/sentry-contrib-breakpad" homepage = "https://github.com/EmbarkStudios/sentry-contrib-rust" keywords = ["breakpad", "sentry", "minidump", "crash"] -exclude = [ - ".github", - "release.toml", - "breakpad-handler", - "breakpad-sys", -] +exclude = [".github", "release.toml", "breakpad-handler", "breakpad-sys"] + +[badges] +# We don't use this crate ourselves any longer +maintenance = { status = "passively-maintained" } [features] default = [] @@ -27,7 +26,4 @@ sentry-core = { version = "0.28", features = ["client"] } serde_json = "1.0" [workspace] -members = [ - "breakpad-handler", - "breakpad-sys", -] +members = ["breakpad-handler", "breakpad-sys"] diff --git a/deny.toml b/deny.toml index 08970de..b2dd6f3 100644 --- a/deny.toml +++ b/deny.toml @@ -4,15 +4,13 @@ unmaintained = "deny" yanked = "deny" notice = "deny" ignore = [ - # chrono - "RUSTSEC-2020-0159", # time "RUSTSEC-2020-0071", ] [licenses] +allow = ["MIT", "Apache-2.0", "BSD-3-Clause", "Unicode-DFS-2016"] unlicensed = "deny" -allow = ["MIT", "Apache-2.0", "BSD-3-Clause"] copyleft = "deny" allow-osi-fsf-free = "neither" default = "deny" @@ -22,6 +20,10 @@ exceptions = [] multiple-versions = "deny" wildcards = "deny" skip = [] +skip-tree = [ + # sentry-types depends on both time 0.3 and chrono -> time 0.1 + { name = "time", version = "=0.1.44" }, +] [sources] unknown-registry = "deny"