1
0
mirror of https://github.com/Tim-Paik/neutauri.git synced 2024-10-12 23:29:41 +00:00

Create neutauri_data crate to reduce dependencies

This commit is contained in:
2022-05-07 20:16:30 +08:00
parent fdd8e6f961
commit c1577c5450
11 changed files with 148 additions and 280 deletions

View File

@ -1,16 +1,15 @@
use crate::data;
use std::{
fs,
io::{self, Write},
};
#[cfg(windows)]
use anyhow::Context;
use neutauri_data as data;
#[cfg(windows)]
use std::{
env,
hash::{Hash, Hasher},
};
use std::{
fs,
io::{self, Write},
};
fn options() -> fs::OpenOptions {
#[cfg(not(windows))]