Skip to content

Commit 28f1ac0

Browse files
committed
Solve bug introduced while fixing discovery of tokio
Signed-off-by: Jorge J. Perez <jjperez@ekumenlabs.com>
1 parent 446c81d commit 28f1ac0

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test_pallet_patcher.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
- name: Install some Rust system crates
4646
run: |
4747
sudo apt-get install librust-serde-dev librust-tokio-dev librust-crc32fast-dev
48+
dpkg -L librust-tokio-dev
4849
4950
- name: colcon build example project with a tokio crate available in workspace_ws/deps
5051
run: |

colcon_cargo/task/cargo/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async def build( # noqa: D102
8282
if "/deps" in str(base_path.parent):
8383
ws_crates_paths = [base_path.parent.parent / Path("deps")]
8484
else:
85-
ws_crates_paths = [base_path.parent.parent / Path("deps")]
85+
ws_crates_paths = [base_path.parent / Path("deps")]
8686

8787
system_crates_paths = [Path("/usr/share/cargo/registry/")]
8888
manifest_path = base_path / Path("Cargo.toml")

0 commit comments

Comments
 (0)