This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{ | |
convert::TryInto, | |
env, fs, | |
fs::{File, OpenOptions}, | |
io::{BufRead, BufReader, ErrorKind, Read, Seek, SeekFrom, Write}, | |
path::Path, | |
process | |
}; | |
fn main() -> std::io::Result<()> { | |
let args: Vec<String> = env::args().skip(1).collect(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{ | |
convert::TryInto, | |
env, fs, | |
fs::{File, OpenOptions}, | |
io::{BufRead, BufReader, ErrorKind, Read, Seek, SeekFrom, Write}, | |
path::Path, | |
process | |
}; | |
fn main() -> std::io::Result<()> { | |
let args: Vec<String> = env::args().skip(1).collect(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use dirs; | |
use gtk::prelude::*; | |
use gtk::*; | |
use serde_json::{json, Result, Value}; | |
use std::env; | |
pub mod extract; | |
pub mod imgtype; | |
fn main() -> std::io::Result<()> { |