├── .github └── workflows │ ├── build.yaml │ └── release.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── cache.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── screenshot_details.png ├── screenshot_marks.png ├── screenshot_start.png └── src ├── args.rs ├── cache.rs ├── cache ├── filetree.rs ├── sql │ ├── none_to_v0.sql │ ├── none_to_v1.sql │ └── v0_to_v1.sql └── tests.rs ├── lib.rs ├── main.rs ├── reporter.rs ├── restic.rs ├── ui.rs └── util.rs /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/README.md -------------------------------------------------------------------------------- /benches/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/benches/cache.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "stable" 3 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /screenshot_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/screenshot_details.png -------------------------------------------------------------------------------- /screenshot_marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/screenshot_marks.png -------------------------------------------------------------------------------- /screenshot_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/screenshot_start.png -------------------------------------------------------------------------------- /src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/args.rs -------------------------------------------------------------------------------- /src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache.rs -------------------------------------------------------------------------------- /src/cache/filetree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache/filetree.rs -------------------------------------------------------------------------------- /src/cache/sql/none_to_v0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache/sql/none_to_v0.sql -------------------------------------------------------------------------------- /src/cache/sql/none_to_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache/sql/none_to_v1.sql -------------------------------------------------------------------------------- /src/cache/sql/v0_to_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache/sql/v0_to_v1.sql -------------------------------------------------------------------------------- /src/cache/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/cache/tests.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/reporter.rs -------------------------------------------------------------------------------- /src/restic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/restic.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/ui.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drdo/redu/HEAD/src/util.rs --------------------------------------------------------------------------------