For most Nim programs no DLL is required. Ship DLLs for proper platform (probably just 64bit, 32bit windows is very rare) and only if you are:
if you use `-d:ssl` http library needed for https:// calls * cacert.pem * libssl-1_1.dll * libcrypto-1_1.dll * libssl-1_1-x64.dll * libcrypto-1_1-x64.dll if you `import curl` http library * libcurl.dll I think if you `import curses` text terminal * pdcurses32.dll * pdcurses64.dll * pdcurses.dll I think if you `import sqlite` database * sqlite3_32.dll * sqlite3_64.dll I think if you `import pcre` regex * pcre.dll * pcre32.dll * pcre64.dll
