rename pacdef_main to main

This commit is contained in:
steven-omaha
2023-02-14 17:49:06 +01:00
parent 7075ef1994
commit 53c61e67ad
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ pacdef_core = {path = "crates/pacdef_core", version = "1.0.0-beta4"}
[[bin]] [[bin]]
name = "pacdef" name = "pacdef"
path = "crates/pacdef_main/main.rs" path = "crates/main/main.rs"
[profile.release] [profile.release]
lto = "off" lto = "off"
@@ -13,6 +13,7 @@ Main program for `pacdef`. All internal logic happens in [`pacdef_core`].
clippy::wildcard_dependencies, clippy::wildcard_dependencies,
missing_docs missing_docs
)] )]
use std::process::{ExitCode, Termination}; use std::process::{ExitCode, Termination};
use anyhow::{Context, Result}; use anyhow::{Context, Result};