robius_use_makepad/
lib.rs

1//! Dummy crate that auto-configures all other `robius-*` crates 
2//! in your dependency tree to work with Makepad.
3//!
4//! # Usage of this crate
5//! If you're building a Makepad app that uses any `robius-*` crates,
6//! simply add this to your `Cargo.toml` to ensure that those `robius-*` crates
7//! are configured correctly to expect being used from within a Makepad app.
8//!
9//! That's all you need to do!
10//!
11//! ## More details
12//! This crate exists as a convenient way to auto-configure all other `robius-*` crates
13//! in your dependency tree to work with Makepad.
14//! It doesn't have any code -- all it does is enable the `makepad` feature
15//! in the [`robius-android-env`] crate, which is an "internal" crate that
16//! many other `robius-*` crates depend on.
17//!
18//! [`robius-android-env`]: https://crates.io/crates/robius-android-env
19//!