Skip to content
This repository has been archived by the owner on Jun 4, 2020. It is now read-only.

Update Parsec interface version #14

Merged
merged 1 commit into from
Dec 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "parsec-client-test"
version = "0.1.7"
version = "0.1.8"
authors = ["Paul Howard <paul.howard@arm.com>",
"Ionut Mihalcea <ionut.mihalcea@arm.com>",
"Hugues de Valon <hugues.devalon@arm.com>"]
edition = "2018"

[dependencies]
parsec-interface = { git = "https://github.com/parallaxsecond/parsec-interface-rs", tag = "0.3.0" }
parsec-interface = { git = "https://github.com/parallaxsecond/parsec-interface-rs", tag = "0.4.0" }
num = "0.2.0"
rand = "0.7.2"
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion src/abstract_test_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl TestClient {
self.cached_opcodes = Some(map);
}

fn get_cached_provider(&mut self, opcode: Opcode) -> ProviderID {
pub fn get_cached_provider(&mut self, opcode: Opcode) -> ProviderID {
if self.cached_opcodes.is_none() {
self.build_cache();
}
Expand Down