#constructor #static #ctor #init #main #proc-macro

yanked startup

Tiny (no dependency, no proc macro) way to run some code before main

0.1.1 Feb 2, 2021
0.1.0 Feb 2, 2021
0.0.1 Feb 2, 2021

#11 in #main

Download history 13/week @ 2024-02-19 25/week @ 2024-02-26 8/week @ 2024-03-04 22/week @ 2024-03-11 8/week @ 2024-03-18

64 downloads per month

Apache-2.0 OR MIT OR Zlib

10KB
85 lines

startup: Run Rust code "before main"

Build Status Docs Latest Version Minimum Rust Version

Tiny (no dependency, no proc macro) way to run some code before main. This is similar to the GNU C extension __attribute__((constructor)), or the behavior of static constructors from C++.

Usage

startup::on_startup! {
    // Note: not all of the rust stdlib may be supported before main.
    println!("I'm running before main");
}
fn main() {
    println!("I'm inside main");
}

Prints:

I'm running before main.
I'm inside main.

Comparison with ctor

This crate is the moral equivalent to the ctor crate, although the API is completely different. The main reasons for it's existence are:

  • Much faster to compile — no proc macros / syn / quote.
  • More obviously safe. No support for #[ctor] on statics, no #[dtor] equivalent, and avoids a number of issues I filed with ctor in the past...
  • Handle untested unix platforms by assuming they support at least the .ctors section. This is in line with what clang seems to do when compiling C++ static constructors. This means we should expect to have better platform support.

No runtime deps