Skip to content

Commit

Permalink
Merge pull request #16 from jam1garner/master
Browse files Browse the repository at this point in the history
no_std support
  • Loading branch information
dtolnay committed Apr 8, 2020
2 parents b94ef8c + 9e2edfe commit 6c8f528
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 6c8f528

Please sign in to comment.