webdriver/
lib.rs

1#![allow(non_snake_case)]
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5#![forbid(unsafe_code)]
6
7extern crate base64;
8extern crate cookie;
9extern crate icu_segmenter;
10#[macro_use]
11extern crate log;
12extern crate http;
13extern crate serde;
14#[macro_use]
15extern crate serde_derive;
16extern crate serde_json;
17extern crate time;
18#[cfg(feature = "server")]
19extern crate tokio;
20extern crate url;
21#[cfg(feature = "server")]
22extern crate warp;
23
24#[macro_use]
25pub mod macros;
26pub mod actions;
27pub mod capabilities;
28pub mod command;
29pub mod common;
30pub mod error;
31pub mod httpapi;
32pub mod response;
33#[cfg(feature = "server")]
34pub mod server;
35
36#[cfg(test)]
37pub mod test;
38
39pub use common::Parameters;