We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit a040f1dCopy full SHA for a040f1d
.gitignore
@@ -0,0 +1 @@
1
+/target
Cargo.toml
@@ -0,0 +1,9 @@
+[package]
2
+name = "rust-deploy-test"
3
+version = "0.1.0"
4
+authors = ["Mark Nokalt <marknokalt@live.com>"]
5
+edition = "2018"
6
+
7
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9
+[dependencies]
src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}
0 commit comments