Skip to content

Commit e295e00

Browse files
committed
Set up cargo
1 parent 734bcef commit e295e00

File tree

5 files changed

+37
-2
lines changed

5 files changed

+37
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "wasmo"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
10+
11+
[[bin]]
12+
name = "wasmo"
13+
path = "bin/cli.rs"

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
# wasmo
2-
A WebAssembly Compiler and Runtime
1+
<div align="center">
2+
<a href="#" target="_blank">
3+
<img src="https://raw.githubusercontent.com/appcypher/gigamono-assets/main/avatar-gigamono-boxed.png" alt="Gigamono Logo" width="140" height="140"></img>
4+
</a>
5+
</div>
6+
7+
<h1 align="center">Wasmo</h1>
8+
9+
`wasmo` is a WebAssembly compiler and runtime. It compiles WebAssembly code to native code with runtime memory, control integrity security as outlined by the WebAssembly spec.
10+
11+
> If you are looking to get started with the Gigamono framework, check the [Gigamono repo](https://github.com/gigamono/gigamono).
12+
13+
##

bin/cli.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)