diff options
author | 2020-03-23 15:17:06 +0100 | |
---|---|---|
committer | 2020-03-23 15:17:06 +0100 | |
commit | 24c0089244667a4f7b0bcecc9dae3fa6d3d4c43b (patch) | |
tree | 6561e2b262dff78e83712b24437b83c230fb9917 | |
parent | c4c1bef05cbc5767533004a682d1adb2acec6677 (diff) | |
download | rtic-memory_lane_experiment.tar.gz rtic-memory_lane_experiment.tar.zst rtic-memory_lane_experiment.zip |
memory_lanememory_lane_experiment
-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!"); +} |