diff --git a/.gitignore b/.gitignore index 3ca43ae..e7180de 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,15 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + + +# Added by cargo + +/target + + +# Added by cargo +# +# already existing elements were commented out + +#/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d282b82 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "cams_cargo_lib" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..82ecd57 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,3 @@ +pub fn hello_world() { + println!("Hello World"); +} \ No newline at end of file