78 releases (stable)

3.2.1 Oct 7, 2024
3.1.2 May 15, 2024
3.0.0 Mar 15, 2024
2.6.1 Jan 23, 2024
0.1.0-pre.3 Mar 29, 2021

#311 in Development tools

Download history 295/week @ 2024-07-20 384/week @ 2024-07-27 417/week @ 2024-08-03 78/week @ 2024-08-10 359/week @ 2024-08-17 452/week @ 2024-08-24 347/week @ 2024-08-31 276/week @ 2024-09-07 384/week @ 2024-09-14 590/week @ 2024-09-21 408/week @ 2024-09-28 613/week @ 2024-10-05 681/week @ 2024-10-12 802/week @ 2024-10-19 629/week @ 2024-10-26 734/week @ 2024-11-02

2,933 downloads per month

MIT/Apache

61KB
1.5K SLoC

dylint-link

dylint-link is a wrapper around Rust's default linker (cc) to help create Dylint libraries.

When you link a dynamic library with the same name as your package, dylint-link creates a copy of your library with a filename that Dylint recognizes, i.e.:

DLL_PREFIX LIBRARY_NAME '@' TOOLCHAIN DLL_SUFFIX

To use dylint-link, install it:

cargo-install dylint-link

And set it as the linker in your library's .cargo/config.toml file, e.g.:

[target.x86_64-unknown-linux-gnu]
linker = "dylint-link"

If your library uses dylint-link and the dylint_library! macro, then all you should have to do is implement the register_lints function. See the examples in this repository.

Dependencies

~5–14MB
~170K SLoC