diff --git a/Cargo.lock b/Cargo.lock index db1880d..be01c42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -151,7 +151,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" [[package]] -name = "hc" +name = "hazure" version = "0.1.0" dependencies = [ "clap", diff --git a/README.md b/README.md index b1d9085..a6a3b13 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Hades +# Hazure Programming language that compiles to C++! ```sml diff --git a/crates/main/Cargo.toml b/crates/main/Cargo.toml index 2e84fca..fd11838 100644 --- a/crates/main/Cargo.toml +++ b/crates/main/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "hc" +name = "hazure" license = "MIT OR Apache-2.0" version = "0.1.0" edition = "2021" diff --git a/crates/main/src/main.rs b/crates/main/src/main.rs index a454f08..65a95c5 100644 --- a/crates/main/src/main.rs +++ b/crates/main/src/main.rs @@ -17,7 +17,7 @@ pub mod util; use crate::util::log; fn main() { - let config_file = fs::read_to_string("./hades.toml"); + let config_file = fs::read_to_string("./hazure.toml"); let config: config::Config; match config_file { Ok(content) => { diff --git a/hades.toml b/hazure.toml similarity index 100% rename from hades.toml rename to hazure.toml