aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/Cargo.toml8
-rw-r--r--bin/src/main.rs3
2 files changed, 11 insertions, 0 deletions
diff --git a/bin/Cargo.toml b/bin/Cargo.toml
new file mode 100644
index 0000000..57cff11
--- /dev/null
+++ b/bin/Cargo.toml
@@ -0,0 +1,8 @@
1[package]
2name = "bin"
3version = "0.1.0"
4edition = "2018"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[dependencies]
diff --git a/bin/src/main.rs b/bin/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/bin/src/main.rs
@@ -0,0 +1,3 @@
1fn main() {
2 println!("Hello, world!");
3}