We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ee79d0 commit 0a33ca7Copy full SHA for 0a33ca7
.gitignore
@@ -8,3 +8,8 @@ Cargo.lock
8
9
# These are backup files generated by rustfmt
10
**/*.rs.bk
11
+
12
13
+# Added by cargo
14
15
+/target
Cargo.toml
@@ -0,0 +1,8 @@
1
+[package]
2
+name = "sheath"
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
+[dependencies]
src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}
0 commit comments