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..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 = [] @@ -23,11 +22,8 @@ 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] -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"