diff --git a/PUBLISHING.md b/PUBLISHING.md index ae3959a90..731414428 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -33,9 +33,6 @@ a new major version of that crate will have to be published, then a new version `uefi` (major if the previous bump caused changes in the public API of this crate as well), then possibly a new version of `uefi-services`. -Furthermore, `uefi-macros` has the `uefi` crate as a `dev-dependency`, -and that will have to be updated in tandem with the major versions of the core crate. - ### Updating the dependent crates Remember that if a new major version of a crate gets released, when bumping the version diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index 0ee6ffd4f..32f2b7cdc 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -22,4 +22,4 @@ syn = { version = "2.0.4", features = ["full"] } [dev-dependencies] trybuild = "1.0.61" -uefi = { version = "0.25.0", default-features = false } +uefi = { path = "../uefi", default-features = false }