Bug 1763328 - [geckodriver] Use semver beside path for internal crate dependencies. r=webdriver-reviewers,jgraham

Differential Revision: https://phabricator.services.mozilla.com/D143381
This commit is contained in:
Henrik Skupin 2022-04-12 18:34:35 +00:00
parent 525218495a
commit 7f0d8e4745

View File

@ -16,11 +16,11 @@ clap = { version = "3", default-features = false, features = ["cargo", "std", "s
hyper = "0.13"
lazy_static = "1.0"
log = { version = "0.4", features = ["std"] }
marionette = { path = "./marionette" }
mozdevice = { path = "../mozbase/rust/mozdevice" }
mozprofile = { path = "../mozbase/rust/mozprofile" }
mozrunner = { path = "../mozbase/rust/mozrunner" }
mozversion = { path = "../mozbase/rust/mozversion" }
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" }
mozrunner = { path = "../mozbase/rust/mozrunner", version="0.14.0" }
mozversion = { path = "../mozbase/rust/mozversion", version="0.4.3" }
regex = { version="1.0", default-features = false, features = ["perf", "std"] }
serde = "1.0"
serde_derive = "1.0"
@ -28,7 +28,7 @@ serde_json = "1.0"
serde_yaml = "0.8"
url = "2.0"
uuid = { version = "0.8", features = ["v4"] }
webdriver = { path = "../webdriver" }
webdriver = { path = "../webdriver", version="0.45.0" }
zip = { version = "0.4", default-features = false, features = ["deflate"] }
[dev-dependencies]