aboutsummaryrefslogtreecommitdiffstats
path: root/components/bluetooth_traits/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/bluetooth_traits/lib.rs')
-rw-r--r--components/bluetooth_traits/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/bluetooth_traits/lib.rs b/components/bluetooth_traits/lib.rs
index a1b1b41be6e..d93ff4109f7 100644
--- a/components/bluetooth_traits/lib.rs
+++ b/components/bluetooth_traits/lib.rs
@@ -5,9 +5,12 @@
#![feature(proc_macro)]
extern crate ipc_channel;
+extern crate regex;
#[macro_use]
extern crate serde_derive;
+extern crate util;
+pub mod blacklist;
pub mod scanfilter;
use ipc_channel::ipc::IpcSender;
@@ -20,6 +23,7 @@ pub enum BluetoothError {
NotFound,
NotSupported,
Security,
+ InvalidState,
}
#[derive(Deserialize, Serialize)]