memory_lane

This commit is contained in:
Per Lindgren 2020-03-23 15:17:06 +01:00
parent c4c1bef05c
commit 24c0089244
4 changed files with 17 additions and 0 deletions

10
memory_lane/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "memory_lane"
version = "0.1.0"
authors = ["Per Lindgren <per.lindgren@ltu.se>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cargo-project = "0.2.3"

3
memory_lane/README.md Normal file
View file

@ -0,0 +1,3 @@
# Memory Lane
Host side debug crate.

1
memory_lane/src/gen.rs Normal file
View file

@ -0,0 +1 @@
hello

3
memory_lane/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}