diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Cargo.toml | 8 | ||||
-rw-r--r-- | bin/src/main.rs | 3 |
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] | ||
2 | name = "bin" | ||
3 | version = "0.1.0" | ||
4 | edition = "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 @@ | |||
1 | fn main() { | ||
2 | println!("Hello, world!"); | ||
3 | } | ||