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