mirror of
https://github.com/NotAShelf/stash.git
synced 2026-04-26 11:29:59 +00:00
Merge pull request #56 from NotAShelf/notashelf/push-umuwyuqntslp
various: bump dependencies
This commit is contained in:
commit
1f0312b2f6
6 changed files with 125 additions and 40 deletions
|
|
@ -61,14 +61,14 @@ impl SqliteClipboardDb {
|
|||
.query([])
|
||||
.map_err(|e| StashError::ListDecode(e.to_string().into()))?;
|
||||
|
||||
let mut entries: Vec<(u64, String, String)> = Vec::new();
|
||||
let mut entries: Vec<(i64, String, String)> = Vec::new();
|
||||
let mut max_id_width = 2;
|
||||
let mut max_mime_width = 8;
|
||||
while let Some(row) = rows
|
||||
.next()
|
||||
.map_err(|e| StashError::ListDecode(e.to_string().into()))?
|
||||
{
|
||||
let id: u64 = row
|
||||
let id: i64 = row
|
||||
.get(0)
|
||||
.map_err(|e| StashError::ListDecode(e.to_string().into()))?;
|
||||
let contents: Vec<u8> = row
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue