asimov_chromium_module/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5
6#[cfg(feature = "std")]
7extern crate std;
8
9pub mod bookmarks;
10pub mod browsers;
11pub mod jq;
12
13pub use bookmarks::*;