mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
memory_lane
This commit is contained in:
parent
c4c1bef05c
commit
24c0089244
4 changed files with 17 additions and 0 deletions
10
memory_lane/Cargo.toml
Normal file
10
memory_lane/Cargo.toml
Normal 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
3
memory_lane/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Memory Lane
|
||||
|
||||
Host side debug crate.
|
1
memory_lane/src/gen.rs
Normal file
1
memory_lane/src/gen.rs
Normal file
|
@ -0,0 +1 @@
|
|||
hello
|
3
memory_lane/src/main.rs
Normal file
3
memory_lane/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in a new issue