fix: replace deprecated vim.loop with vim.uv

Problem: vim.loop is deprecated since Neovim 0.10 in favour of vim.uv.
Five call sites across scraper.lua, setup.lua, utils.lua, and health.lua
still referenced the old alias.

Solution: replace every vim.loop reference with vim.uv directly.
This commit is contained in:
Barrett Ruth 2026-02-26 22:44:04 -05:00
parent 4ccab9ee1f
commit 4e8480821d
4 changed files with 5 additions and 5 deletions

View file

@ -179,7 +179,7 @@ function M.setup_contest(platform, contest_id, problem_id, language)
contest_id = contest_id,
language = lang,
requested_problem_id = problem_id,
token = vim.loop.hrtime(),
token = vim.uv.hrtime(),
})
logger.log('Fetching contests problems...', vim.log.levels.INFO, true)