Skip to content

Commit 95b35b9

Browse files
committed
Merge branch 'local-deps' into 'master'
Use local checkout of deps when developing See merge request redox-os/uefi!8
2 parents 9d93c7b + 46d376c commit 95b35b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/uefi_alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ repository = "https://gitlab.redox-os.org/redox-os/uefi"
1111
name = "uefi_alloc"
1212

1313
[dependencies]
14-
redox_uefi = "0.1.2"
14+
redox_uefi = { path = "../uefi" , version = "0.1.2" }

crates/uefi_std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ repository = "https://gitlab.redox-os.org/redox-os/uefi"
1111
name = "uefi_std"
1212

1313
[dependencies]
14-
redox_uefi = "0.1.2"
15-
redox_uefi_alloc = "0.1.1"
14+
redox_uefi = { path = "../uefi", version = "0.1.2" }
15+
redox_uefi_alloc = { path = "../uefi_alloc", version = "0.1.1" }

0 commit comments

Comments
 (0)