Splitting vasm and vasm_core

This commit is contained in:
2023-01-01 17:25:00 -06:00
parent 25afdb8890
commit 63d58b63e3
13 changed files with 47 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "vasm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
vasm_core = { path = "../vasm_core" }
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}