diff --git a/.changes/update-bitflags-to-2-0.md b/.changes/update-bitflags-to-2-0.md new file mode 100644 index 0000000..04715c2 --- /dev/null +++ b/.changes/update-bitflags-to-2-0.md @@ -0,0 +1,7 @@ +--- +"javascriptcore-rs": patch +--- + +Update bitflags dependency version to 2.0. + +This avoids duplicated dependencies in downstream crates. diff --git a/Cargo.toml b/Cargo.toml index 52fca49..67bf167 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ rustdoc-args = [ "--cfg", "docsrs" ] name = "javascriptcore" [dependencies] -bitflags = "^1.0" +bitflags = "^2.0" glib = "^0.18.0" [dependencies.ffi]