Add initial package
3 files changed, 12 insertions(+), 0 deletions(-) A .gitignore A Cargo.toml A src/main.rs
A => .gitignore +1 -0
@@ 1,1 @@ /target
A => Cargo.toml +8 -0
@@ 1,8 @@ [package] name = "swprs" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]
A => src/main.rs +3 -0
@@ 1,3 @@ fn main() { println!("Hello, world!"); }