Adjust the timing for fetching pages.
Dependencies
- [2]
AOO3FCSGCargo clippy, tweaks, etc - [3]
C376NCOVPrevent flooding the website (still need to better mimic browser requests) - [4]
5Y7ZXB53Start picker UI - [5]
PQ4BG3ZJThe web scrape functions - [6]
LPVC545KGet the scraper part of this program working - [7]
QEKHTVB7Get most things semi-working except the final sort
Change contents
- replacement in src/pick.rs at line 22
let (ntx, mut nrx) = mpsc::channel(count as usize / 2 + count as usize % 2);let (ntx, mut nrx) = mpsc::channel((count + count / 2) as usize); - replacement in src/gather.rs at line 23
let (tx, rx) = tokio::sync::mpsc::channel(256);let (tx, rx) = tokio::sync::mpsc::channel(1);