Skip to content

Recompilation speedup: use runtime deps in Pleroma.Gun

Alex Gleason requested to merge cycles-gun into develop

#2651 (closed)

This MR gets rid of two small compile-time cycles:

Screenshot_from_2021-05-29_10-59-37

https://www.diffchecker.com/GhhLUNuL

Using an alias in a module attribute makes the alias a compile-time dep. Using functions instead of module attributes makes them runtime deps.

Merge request reports