Skip to content

Commit

Permalink
Update dependencies to fix some warnings from cargo audit
Browse files Browse the repository at this point in the history
This doesn't fix all the issues, because this crate still depends on chrono
0.4.19, which as a potential segfault. But there's no newer version of chrono
yet. See chronotope/chrono#674 for discussion of the
0.4.20 release.
  • Loading branch information
autarch committed Apr 23, 2022
1 parent fa24c3b commit 9a4bd4c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ documentation = "https://docs.rs/octocrab"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
reqwest = { version = "0.11.3", default-features = false, features = ["json"] }
reqwest = { version = "0.11.10", default-features = false, features = ["json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
serde_path_to_error = "0.1.4"
Expand All @@ -32,9 +32,10 @@ jsonwebtoken = "8"
futures-core = { version = "0.3.15", optional = true }
futures-util = { version = "0.3.15", optional = true }
secrecy = "0.8.0"
regex = "1.5.5"

[dev-dependencies]
tokio = { version = "1.6.1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
tokio = { version = "1.17.0", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
wiremock = "0.5.3"

[features]
Expand Down

0 comments on commit 9a4bd4c

Please sign in to comment.