From b6758cde196fd57592e4106e0ed656727a06fd6e Mon Sep 17 00:00:00 2001 From: Bernhard Schuster Date: Tue, 20 Jun 2017 18:13:30 +0200 Subject: [PATCH] feat/opencl: add version parsing --- Cargo.toml | 1 + index.html | 1 + src/lib.rs | 2 ++ 3 files changed, 4 insertions(+) create mode 100644 index.html diff --git a/Cargo.toml b/Cargo.toml index 18ac81a..4c8dbd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,7 @@ enum_primitive = "0.1.0" byteorder = "0.4" num = "0.1" lazy_static = "0.1.15" +regex = "*" clippy = { version = "0.0.27", optional = true } compiletest_rs = { version = "0.1", optional = true } diff --git a/index.html b/index.html new file mode 100644 index 0000000..c7a6909 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 10c0a15..91278f7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -153,6 +153,8 @@ extern crate bitflags; extern crate enum_primitive; #[macro_use] extern crate lazy_static; +#[cfg(feature = "opencl")] +extern crate regex; extern crate num; extern crate byteorder;