Skip to content

Commit

Permalink
Merge #873
Browse files Browse the repository at this point in the history
873: Update 'regex' crate due to CVE r=Bromeon a=Bromeon

See https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html

Also uses minimal possible versions in more places.

bors r+

Co-authored-by: Jan Haller <bromeon@gmail.com>
  • Loading branch information
bors[bot] and Bromeon committed Mar 13, 2022
2 parents 4e66976 + 846e25a commit 61946a7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions bindings-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ debug = []
custom-godot = ["which"]

[dependencies]
heck = "0.4.0"
memchr = "2.4.1"
miniserde = "0.1.15"
proc-macro2 = "1.0.30"
quote = "1.0.10"
regex = "1.5.4"
roxmltree = "0.14.1"
syn = { version = "1.0.80", features = ["full", "extra-traits", "visit"] }
unindent = "0.1.7"
which = { optional = true, version = "4.2.2" }
heck = "0.4"
memchr = "2"
miniserde = "0.1.10"
proc-macro2 = "1"
quote = "1"
regex = "1.5.5" # for security: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html
roxmltree = "0.14"
syn = { version = "1", features = ["full", "extra-traits", "visit"] }
unindent = "0.1.5"
which = { optional = true, version = "4" }
2 changes: 1 addition & 1 deletion gdnative-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ libc = "0.2"
bindgen = { version = "0.59", default-features = false, features = ["runtime"] }
proc-macro2 = "1"
quote = "1"
miniserde = "0.1"
miniserde = "0.1.10"
semver = "1"

0 comments on commit 61946a7

Please sign in to comment.