diff options
author | Santo Cariotti <santo@dcariotti.me> | 2020-11-23 23:58:21 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2020-11-23 23:58:21 +0100 |
commit | 2985beeb2754944b7dcc97762638e07a47822818 (patch) | |
tree | 12173a7dd8ba4a506aa86fca544a5aec95833b25 |
init
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Cargo.toml | 9 | ||||
-rw-r--r-- | src/main.rs | 3 |
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..46b5d68 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +.envrc diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..17b5ef0 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "rsanta" +version = "0.1.0" +authors = ["Santo Cariotti <santo@dcariotti.me>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |