Bug 1750691 - [rust-mozprofile] Release and cargo vet version 0.9.0. r=webdriver-reviewers,jgraham,supply-chain-reviewers,bholley

Differential Revision: https://phabricator.services.mozilla.com/D159152
This commit is contained in:
Henrik Skupin 2022-10-13 06:21:40 +00:00
Родитель 16d35e2ac2
Коммит 23c4f58454
7 изменённых файлов: 15 добавлений и 12 удалений

2
Cargo.lock сгенерированный
Просмотреть файл

@ -3457,7 +3457,7 @@ dependencies = [
[[package]]
name = "mozprofile"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"tempfile",
]

Просмотреть файл

@ -684,6 +684,12 @@ criteria = "safe-to-deploy"
delta = "0.23.1 -> 0.24.0"
notes = "This audit treats Dzmitry Malyshau (kvark) as a trusted reviewer."
[[audits.mozprofile]]
who = "Henrik Skupin <mail@hskupin.info>"
criteria = "safe-to-deploy"
version = "0.9.0"
notes = "Maintained by the DevTools team at Mozilla and has no unsafe code."
[[audits.naga]]
who = "Dzmitry Malyshau <kvark@fastmail.com>"
criteria = "safe-to-deploy"

Просмотреть файл

@ -403,10 +403,6 @@ criteria = "safe-to-deploy"
version = "0.8.8"
criteria = "safe-to-deploy"
[[exemptions.crypto-common]]
version = "0.1.3"
criteria = "safe-to-deploy"
[[exemptions.d3d12]]
version = "0.4.1"
criteria = "safe-to-deploy"
@ -875,10 +871,6 @@ criteria = "safe-to-deploy"
version = "0.5.0"
criteria = "safe-to-run"
[[exemptions.mozprofile]]
version = "0.8.0"
criteria = "safe-to-run"
[[exemptions.mozrunner]]
version = "0.14.0"
criteria = "safe-to-run"

Просмотреть файл

@ -50,6 +50,11 @@ criteria = "safe-to-deploy"
version = "1.0.0"
notes = "I am the author of this crate."
[[audits.bytecodealliance.audits.crypto-common]]
who = "Benjamin Bouvier <public@benj.me>"
criteria = "safe-to-deploy"
version = "0.1.3"
[[audits.bytecodealliance.audits.derive_arbitrary]]
who = "Nick Fitzgerald <fitzgen@gmail.com>"
criteria = "safe-to-deploy"

Просмотреть файл

@ -18,7 +18,7 @@ lazy_static = "1.0"
log = { version = "0.4", features = ["std"] }
marionette = { path = "./marionette", version="0.2.0" }
mozdevice = { path = "../mozbase/rust/mozdevice", version="0.5.0" }
mozprofile = { path = "../mozbase/rust/mozprofile", version="0.8.0" }
mozprofile = { path = "../mozbase/rust/mozprofile", version="0.9.0" }
mozrunner = { path = "../mozbase/rust/mozrunner", version="0.14.0" }
mozversion = { path = "../mozbase/rust/mozversion", version="0.5.0-alpha" }
regex = { version="1.0", default-features = false, features = ["perf", "std"] }

Просмотреть файл

@ -1,6 +1,6 @@
[package]
name = "mozprofile"
version = "0.8.0"
version = "0.9.0"
authors = ["Mozilla"]
description = "Library for working with Mozilla profiles."
repository = "https://hg.mozilla.org/mozilla-central/file/tip/testing/mozbase/rust/mozprofile"

Просмотреть файл

@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
log = "0.4"
mozprofile = { path = "../mozprofile", version = "0.8" }
mozprofile = { path = "../mozprofile", version = "0.9" }
plist = "1.0"
[target.'cfg(target_os = "windows")'.dependencies]