Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no_std support #16

Merged
merged 1 commit into from Apr 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/lib.rs
@@ -1,3 +1,4 @@
#![no_std]
//! **Typed distributed plugin registration.**
//!
//! This crate provides a way to set up a plugin registry into which plugins
Expand Down Expand Up @@ -94,6 +95,9 @@
//! There is no guarantee about the order that plugins of the same type are
//! visited by the iterator. They may be visited in any order.

extern crate alloc;
use alloc::boxed::Box;

// Not public API.
#[doc(hidden)]
pub use ctor::ctor;
Expand Down