Skip to content

Commit d217ae8

Browse files
committed
Refactor writer process
1 parent edd8b15 commit d217ae8

File tree

7 files changed

+647
-285
lines changed

7 files changed

+647
-285
lines changed

Cargo.lock

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ xz2 = { version = "0.1.7", features = ["static"] }
5555

5656
[dev-dependencies]
5757
approx = "0.5.1"
58+
assert_matches = "1.5.0"
5859
rand = "0.8.5"
60+
rstest = "0.19.0"
5961
test-case = "3.0.0"
6062

6163
[profile.release]

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod writer_process;
1818
fn main() {
1919
match RunMode::detect() {
2020
RunMode::Main => ui::main::main(),
21-
RunMode::Writer => writer_process::child::main(),
21+
RunMode::Writer => writer_process::main(),
2222
RunMode::EscalatedDaemon => escalated_daemon::main(),
2323
}
2424
}

src/writer_process/child.rs

Lines changed: 0 additions & 283 deletions
This file was deleted.

0 commit comments

Comments
 (0)