lazy_link 0.1.1

lazy_link is a Rust proc macro for dynamic runtime lookup of external functions, supporting custom resolvers, caching and no_std environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

mod cache;
pub use cache::{
    Cache,
    NoCache,
    StaticAtomicCache,
    StaticCache,
};
pub use lazy_link_derive::lazy_link;
pub use obfstr::obfstr;