Skip to content

Commit

Permalink
fix: RUSTSEC-2020-0071 in boa_engine (#2627)
Browse files Browse the repository at this point in the history
<!---
Thank you for contributing to Boa! Please fill out the template below, and remove or add any
information as you feel necessary.
--->

This Pull Request fixes/closes #1671

It changes the following:

- This PR tries to fix https://rustsec.org/advisories/RUSTSEC-2020-0071 in `boa_engine` crate by removing `time 0.1` from the dependency tree

`cargo tree -p boa_engine | grep time`
before:
```console
│   ├── iana-time-zone v0.1.53
│   └── time v0.1.45
│       │       └── toml_datetime v0.5.1
```
after:
```console
│   ├── iana-time-zone v0.1.53
│       │       └── toml_datetime v0.5.1
```
  • Loading branch information
hanabi1224 committed Mar 2, 2023
1 parent 23d1aa8 commit c15bf73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ num-integer = "0.1.45"
bitflags = "1.3.2"
indexmap = "1.9.2"
ryu-js = "0.2.2"
chrono = "0.4.23"
chrono = { version = "0.4.23", default-features = false, features = ["clock", "std", "wasmbind"] }
fast-float = "0.2.0"
unicode-normalization = "0.1.22"
once_cell = "1.17.1"
Expand Down

0 comments on commit c15bf73

Please sign in to comment.