From 5441e3f9fa6abf5aaa3d9cce378574c4457efea6 Mon Sep 17 00:00:00 2001 From: Per Lindgren <per.lindgren@ltu.se> Date: Thu, 16 Jan 2020 17:06:09 +0100 Subject: [PATCH] fixed the missing import and Cargo.toml (no longer assuming a local path to probe.rs) --- runner/Cargo.toml | 2 +- runner/src/lib.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/runner/Cargo.toml b/runner/Cargo.toml index 683ad6b..e767948 100644 --- a/runner/Cargo.toml +++ b/runner/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -probe-rs = { path = "../../probe-rs/probe-rs", version = "0.3.0" } +probe-rs = { version = "0.3.0" } ktest = { path = "../ktest", version = "0.1.0" } failure = "0.1.6" diff --git a/runner/src/lib.rs b/runner/src/lib.rs index b034d7e..fcc83d2 100644 --- a/runner/src/lib.rs +++ b/runner/src/lib.rs @@ -1,5 +1,7 @@ use ktest::{read_ktest, KTEST}; +pub mod common; + use probe_rs::{ config::registry::{Registry, SelectionStrategy}, coresight::memory::MI, -- GitLab