Profile picture processing

This is still single-threaded, so perf is pretty bad. Will need to think
about how to do this more efficiently in a web context where we don't
have threading.
This commit is contained in:
William Casarin
2023-07-05 18:15:15 -07:00
parent 453e8b7002
commit e17b73abab
4 changed files with 86 additions and 47 deletions

View File

@@ -1,3 +1,3 @@
use crate::error::Error;
type Result<T> = std::result::Result<T, Error>;
pub type Result<T> = std::result::Result<T, Error>;