Compare commits

..

No commits in common. "d4c94a5a3a5565a755747f971f2a7130bf902e5e" and "d00d49135adeb3b6040d2bb42494850f32a542e1" have entirely different histories.

3 changed files with 1 additions and 29 deletions

1
.envrc
View File

@ -1 +0,0 @@
use_nix

View File

@ -1,27 +0,0 @@
let
pkgs = import <nixpkgs> {
overlays = [
(import (builtins.fetchTarball
"https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
];
};
rust = pkgs.rust-bin.stable.latest.rust.override {
extensions = [ "rust-src" ];
};
in with pkgs;
pkgs.mkShell rec {
name = "rust";
buildInputs = [
openssl
pkg-config
cargo
rust
rustfmt
rust-analyzer
wasm-pack
wasm-bindgen-cli
nodePackages.rollup
];
}

View File

@ -18,7 +18,7 @@ use superdeduper::CompactMetadata;
use superdeduper::MovieLibrary;
const MOVIE_DIR: &str = "/home/wathiede/Movies";
const TO_BE_REMOVED_DIR: &str = "/home/wathiede/to-be-deleted/";
const TO_BE_REMOVED_DIR: &str = "/storage/media/to-be-deleted/";
lazy_static! {
static ref CLEAN_TITLE_CHARS: Regex = Regex::new("[^ 0-9[:alpha:]]").unwrap();