Browse Source

fix: RUSTSEC-2020-0071 in boa_engine (#2627)

<!---
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 https://github.com/boa-dev/boa/issues/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
```
pull/2632/head
hanabi1224 2 years ago
parent
commit
c15bf73b65
  1. 2
      boa_engine/Cargo.toml

2
boa_engine/Cargo.toml

@ -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"

Loading…
Cancel
Save