8 changed files with 47 additions and 0 deletions
@ -0,0 +1,2 @@ |
|||
target/ |
|||
sunny/Cargo.lock |
@ -0,0 +1,10 @@ |
|||
# This file is automatically @generated by Cargo. |
|||
# It is not intended for manual editing. |
|||
[[package]] |
|||
name = "sunny" |
|||
version = "0.1.0" |
|||
|
|||
[[package]] |
|||
name = "sunny-asm" |
|||
version = "0.1.0" |
|||
|
@ -0,0 +1,5 @@ |
|||
[workspace] |
|||
members = [ |
|||
"sunny", |
|||
"sunny-asm" |
|||
] |
@ -0,0 +1,9 @@ |
|||
[package] |
|||
name = "sunny-asm" |
|||
version = "0.1.0" |
|||
authors = ["Leonora Tindall <nora@nora.codes>"] |
|||
edition = "2018" |
|||
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|||
|
|||
[dependencies] |
@ -0,0 +1,3 @@ |
|||
fn main() { |
|||
println!("Hello, world!"); |
|||
} |
@ -0,0 +1,9 @@ |
|||
[package] |
|||
name = "sunny" |
|||
version = "0.1.0" |
|||
authors = ["Leonora Tindall <nora@nora.codes>"] |
|||
edition = "2018" |
|||
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|||
|
|||
[dependencies] |
@ -0,0 +1,9 @@ |
|||
|
|||
|
|||
#[cfg(test)] |
|||
mod tests { |
|||
#[test] |
|||
fn it_works() { |
|||
assert_eq!(2 + 2, 4); |
|||
} |
|||
} |
Loading…
Reference in new issue