1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # draw bridge
//!
//! `draw bridge` is a software driver for controlling an EiBotBoard drawing robot
//! from other, higher-level software. It aims to expose a set of APIs into in EBB
//! device via a JSON RPC-style IPC socket.
//!
//! **Current Project Status** `WIP.MAX_WIP`. Seriously, this... does work, in a
//! limited, literal sense, but is under a lot of development and testing.
//!
//! ### Questions
//!
//! - Q: _So how will I know it's ready for common use?_
//! A: Watch for the 1.0 release.
extern crate libudev;
extern crate lazy_static;
extern crate regex;
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate serial_core;
extern crate serial_unix;
extern crate log;
extern crate simplelog;
//----------------------------------- local -----------------------------------//
extern crate draw_bridge_derive;