1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

hades is already taken

This commit is contained in:
Natapat Samutpong 2022-03-12 09:52:24 +07:00
parent 04e35046b2
commit 4e040f9601
5 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -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",

View file

@ -1,4 +1,4 @@
# Hades
# Hazure
Programming language that compiles to C++!
```sml

View file

@ -1,5 +1,5 @@
[package]
name = "hc"
name = "hazure"
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"

View file

@ -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) => {