Skip to content

Commit 46d376c

Browse files
committed
Use local checkout of deps when developing
Specify the path to uefi crates so that the local checkout is used when developing instead of pulling from crates.io. Ref: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations Signed-off-by: Tim Crawford <tcrawford@system76.com>
1 parent 9d93c7b commit 46d376c

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)