swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/template/fresh/crates
diff options
context:
space:
mode:
authormain <main@swarm.moe>2026-03-31 14:21:52 -0400
committermain <main@swarm.moe>2026-03-31 14:21:52 -0400
commitc927ac1c6e041f96326e4a32e76ca13da8f6f5be (patch)
tree9e08adbfce36bfe2b306eb4e833807c2f799cbf3 /template/fresh/crates
downloadrust_starter-c927ac1c6e041f96326e4a32e76ca13da8f6f5be.zip
Initial import
Diffstat (limited to 'template/fresh/crates')
-rw-r--r--template/fresh/crates/app/Cargo.toml9
-rw-r--r--template/fresh/crates/app/src/main.rs3
2 files changed, 12 insertions, 0 deletions
diff --git a/template/fresh/crates/app/Cargo.toml b/template/fresh/crates/app/Cargo.toml
new file mode 100644
index 0000000..ce1808a
--- /dev/null
+++ b/template/fresh/crates/app/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "app"
+edition.workspace = true
+license.workspace = true
+rust-version.workspace = true
+version.workspace = true
+
+[lints]
+workspace = true
diff --git a/template/fresh/crates/app/src/main.rs b/template/fresh/crates/app/src/main.rs
new file mode 100644
index 0000000..7527576
--- /dev/null
+++ b/template/fresh/crates/app/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("hello");
+}