maplibre_gl_js/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(clippy::pedantic)]
3#![warn(clippy::nursery)]
4#![warn(missing_docs)]
5#![warn(clippy::missing_docs_in_private_items)]
6// We work with JsFutures, which are not send due to JavaScript being inherently
7// single-threaded. Therefore, we need to allow this.
8#![allow(clippy::future_not_send)]
9
10pub mod bindings;
11pub mod interface;
12
13#[cfg(test)]
14pub mod test_utils;