Skip to content

Commit

Permalink
Merge pull request #1049 from azriel91/maintenance/1048/address-secur…
Browse files Browse the repository at this point in the history
…ity-advisories

Adjust `chrono` features to address security advisory.
  • Loading branch information
jkelleyrtp committed May 29, 2023
2 parents b963452 + 23dcd06 commit fe6146f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ tokio = { version = "1.16.1", features = ["full"] }
reqwest = { version = "0.11.9", features = ["json"] }
fern = { version = "0.6.0", features = ["colored"] }
thiserror = "1.0.30"
env_logger = "0.9.0"
env_logger = "0.10.0"
simple_logger = "4.0.0"

[profile.release]
Expand Down
13 changes: 13 additions & 0 deletions notes/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Contributing

On Linux, install the following packages:

```bash
sudo apt install libgdk3.0-cil libatk1.0-dev libcairo2-dev libpango1.0-dev libgdk-pixbuf2.0-dev libsoup-3.0-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev
```

Then run:

```bash
cargo test --workspace --tests
```
2 changes: 1 addition & 1 deletion packages/dioxus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ log = "0.4.14"
rand = { version = "0.8.4", features = ["small_rng"] }
criterion = "0.3.5"
thiserror = "1.0.30"
env_logger = "0.9.0"
env_logger = "0.10.0"
tokio = { version = "1.21.2", features = ["full"] }
# dioxus-edit-stream = { path = "../edit-stream" }

Expand Down
2 changes: 1 addition & 1 deletion packages/hot-reload/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dioxus-html = { path = "../html", features = ["hot-reload-context"], version = "

interprocess = { version = "1.2.1" }
notify = "5.0.0"
chrono = "0.4.23"
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
serde_json = "1.0.91"
serde = { version = "1", features = ["derive"] }
execute = "0.2.11"
Expand Down
2 changes: 1 addition & 1 deletion packages/liveview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ once_cell = "1.17.1"
# actix-ws = { version = "0.2.5", optional = true }

[dev-dependencies]
pretty_env_logger = { version = "0.4.0" }
pretty_env_logger = { version = "0.5.0" }
tokio = { version = "1.22.0", features = ["full"] }
dioxus = { path = "../dioxus", version = "0.3.0" }
warp = "0.3.3"
Expand Down

0 comments on commit fe6146f

Please sign in to comment.