rename Fasching

This commit is contained in:
jamesk 2024-04-08 18:35:39 -04:00
parent 8aa7f8817f
commit 00030fb677
3 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
Fasching = "0.2.3" filesystem-hashing = "0.2.4"
clap = { version = "4.5.4", features = ["derive"] } clap = { version = "4.5.4", features = ["derive"] }
whoami = "1.5.1" whoami = "1.5.1"
anyhow = "1.0.81" anyhow = "1.0.81"

View File

@ -1,6 +1,6 @@
use anyhow::Error; use anyhow::Error;
use Fasching::snapshot::{Snapshot, SnapshotChangeType, SnapshotCompareResult}; use filesystem_hashing::snapshot::{Snapshot, SnapshotChangeType, SnapshotCompareResult};
use Fasching::{compare_snapshots, import_snapshot}; use filesystem_hashing::{compare_snapshots, import_snapshot};
use crate::options::Arguments; use crate::options::Arguments;
pub struct CompareMode { pub struct CompareMode {

View File

@ -1,9 +1,9 @@
use std::process::exit; use std::process::exit;
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use anyhow::Error; use anyhow::Error;
use Fasching::hasher::HashType::BLAKE3; use filesystem_hashing::hasher::HashType::BLAKE3;
use Fasching::snapshot::Snapshot; use filesystem_hashing::snapshot::Snapshot;
use Fasching::{create_snapshot, export_snapshot}; use filesystem_hashing::{create_snapshot, export_snapshot};
pub struct CreateMode { pub struct CreateMode {
snapshot_path: String, snapshot_path: String,