diff options
-rw-r--r-- | memory_lane/Cargo.toml | 10 | ||||
-rw-r--r-- | memory_lane/README.md | 3 | ||||
-rw-r--r-- | memory_lane/src/gen.rs | 1 | ||||
-rw-r--r-- | memory_lane/src/main.rs | 3 |
4 files changed, 17 insertions, 0 deletions
diff --git a/memory_lane/Cargo.toml b/memory_lane/Cargo.toml new file mode 100644 index 00000000..78f7db06 --- /dev/null +++ b/memory_lane/Cargo.toml @@ -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" diff --git a/memory_lane/README.md b/memory_lane/README.md new file mode 100644 index 00000000..8da0e927 --- /dev/null +++ b/memory_lane/README.md @@ -0,0 +1,3 @@ +# Memory Lane + +Host side debug crate.
\ No newline at end of file diff --git a/memory_lane/src/gen.rs b/memory_lane/src/gen.rs new file mode 100644 index 00000000..b6fc4c62 --- /dev/null +++ b/memory_lane/src/gen.rs @@ -0,0 +1 @@ +hello
\ No newline at end of file diff --git a/memory_lane/src/main.rs b/memory_lane/src/main.rs new file mode 100644 index 00000000..e7a11a96 --- /dev/null +++ b/memory_lane/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |