Skip to content

Commit e9f2b44

Browse files
committed
feat: use lmk for crash reporting
1 parent 2113b74 commit e9f2b44

File tree

4 files changed

+33
-135
lines changed

4 files changed

+33
-135
lines changed

Cargo.lock

Lines changed: 29 additions & 15 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Mustafa <[email protected]>"]
33
edition = "2018"
44
name = "renom"
5-
version = "1.4.0"
5+
version = "1.5.0"
66
description = "A simple program to rename Unreal Engine projects."
77
keywords = ["gamedev", "ue4", "ue5", "unreal_engine", "rename"]
88
categories = [
@@ -38,3 +38,4 @@ chrono = "0.4.38"
3838
toml = "0.8.19"
3939
ulid = "1.1.3"
4040
indoc = "2.0.5"
41+
lmk = "0.2.0"

src/crash.rs

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

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use clap::Parser;
2+
use lmk::init_crash_reporter;
23
use renom::{
34
cli::{
45
Cli,
@@ -8,10 +9,9 @@ use renom::{
89
wizard::start_interactive_dialogue,
910
workflows::{rename_module, rename_plugin, rename_project, rename_target},
1011
};
11-
mod crash;
1212

1313
fn main() {
14-
crash::init_crash_reporter();
14+
init_crash_reporter!();
1515

1616
let cli = Cli::parse();
1717
match cli.command {

0 commit comments

Comments
 (0)