85 releases (stable)

new 4.0.1 Mar 5, 2025
3.5.1 Feb 12, 2025
3.3.0 Dec 18, 2024
3.2.1 Oct 7, 2024
0.1.0-pre.3 Mar 29, 2021

#401 in Development tools

Download history 746/week @ 2024-11-19 841/week @ 2024-11-26 687/week @ 2024-12-03 543/week @ 2024-12-10 617/week @ 2024-12-17 219/week @ 2024-12-24 384/week @ 2024-12-31 311/week @ 2025-01-07 467/week @ 2025-01-14 500/week @ 2025-01-21 457/week @ 2025-01-28 644/week @ 2025-02-04 637/week @ 2025-02-11 736/week @ 2025-02-18 465/week @ 2025-02-25 648/week @ 2025-03-04

2,669 downloads per month

MIT/Apache

65KB
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
~164K SLoC