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
//! A library for downloading and installing chromium and chrome for testing.
//!
//! You can either use the tags or a specific revision.
//! The version you download must be at least as recent as the current CDP revision
//! otherwise the CDP client will likely not be able to communicate with it.
//!
//! We provide good defaults for the most common use cases.
//!
//! # Example
//! ```ignore
//! use crate::render::chrome_fetcher::{BrowserFetcher, BrowserFetcherOptions};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let fetcher = BrowserFetcher::new(BrowserFetcherOptions::default()?);
//! let revision_info = fetcher.fetch().await?;
//! Ok(())
//! }
//! ```
pub use BuildInfo;
pub use FetcherError;
pub use ;
pub use BrowserHost;
pub use BrowserKind;
pub use Platform;
use Runtime;
pub use ;