summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-04-08 07:41:33 +0000
committerGitHub <noreply@github.com>2023-04-08 07:41:33 +0000
commitb2d6efd04a36cbb7d563b0eee465e1608135a23b (patch)
tree6fb891d0eab6bde5cfad093f6af91587cec33c8a
parentd700b9036f69822cad8ce2570d94e61ed49f443a (diff)
parent0733ae2addd2b1ed55a5a1a31da9ed62c0a0ba04 (diff)
Merge #3
3: Add cargo project for testing r=matthiasbeyer a=matthiasbeyer Co-authored-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.gitignore1
-rw-r--r--Cargo.toml8
-rw-r--r--src/main.rs3
3 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ea8c4bf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..1a53f8d
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "rust-ci-setup-bors"
+version = "0.1.0"
+edition = "2021"
+
+# 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!");
+}