Skip to content

Commit

Permalink
Removed default features for in order to eliminate subdependency on .…
Browse files Browse the repository at this point in the history
… Removing this subdependency is required by an advisory [here (CVE-2020-26235)](chronotope/chrono#602).
  • Loading branch information
voidbar committed Aug 8, 2023
1 parent dbbc1fb commit d830fe2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2023-08-08

Removed default features for `chrono` in order to eliminate subdependency on `time@0.1.45`. Removing this subdependency is required by an advisory [here (CVE-2020-26235)](https://github.com/chronotope/chrono/issues/602).

## [0.3.0] - 2020-01-06

Dependency updates + migrated to `thiserror`
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "winstructs"
description = "Common structures used in parsing various windows protocols"
homepage = "https://github.com/omerbenamram/winstructs"
repository = "https://github.com/omerbenamram/winstrcuts"
homepage = "https://github.com/omerbenamram/winstructs/tree/master"
repository = "https://github.com/omerbenamram/winstructs/tree/master"
license = "MIT/Apache-2.0"
readme = "README.md"

version = "0.3.1-alpha.0"
version = "0.3.1"
authors = ["Omer Ben-Amram <omerbenamram@gmail.com>", "Matthew Seyer <matthew.seyer@gmail.com>"]
edition = "2018"

Expand All @@ -20,4 +20,4 @@ env_logger = "0.7"
num-traits = "0.2"
num-derive = "0.3"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
chrono = { version = "0.4", default-features = false, features = ["serde", "std"] }

0 comments on commit d830fe2

Please sign in to comment.