fix broken stuff

This commit is contained in:
Victor Maia 2023-11-12 16:53:29 -03:00
parent 51e4b76f03
commit 513d969936
2 changed files with 3 additions and 1 deletions

View File

@ -5,9 +5,11 @@ edition = "2021"
[lib]
name = "hvml"
path = "src/lib.rs"
[[bin]]
name = "hvml"
path = "src/main.rs"
required-features = ["cli"]
[profile.release]

View File

@ -1,5 +1,5 @@
use clap::{Parser, ValueEnum};
use hvm_lang::{check_book, compile_book, load_file_to_book, run_book, RunInfo};
use hvml::{check_book, compile_book, load_file_to_book, run_book, RunInfo};
use hvmc::{
ast::{show_book, show_net},
run::Ptr,