link-section 0.0.2

Low-level link-section macro support for Rust
docs.rs failed to build link-section-0.0.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: link-section-0.0.1

link-section

A crate for defining link sections in Rust.

Usage

use link_section::{in_section, section};

#[section(code)]
pub static CODE_SECTION: link_section::Section;

#[in_section(CODE_SECTION)]
pub fn link_section_function() {
    println!("link_section_function");
}