aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-04-03 11:31:18 +0200
committerrtkay123 <dev@kanjala.com>2026-04-03 11:31:18 +0200
commit2aec89e22ac8ebcc2859a7492cfca9b5d81cdcc4 (patch)
tree36928586bdf83a2297e93a3248498605b2824000 /crates
downloadsellershut-2aec89e22ac8ebcc2859a7492cfca9b5d81cdcc4.tar.bz2
sellershut-2aec89e22ac8ebcc2859a7492cfca9b5d81cdcc4.zip
initial commit
Diffstat (limited to 'crates')
-rw-r--r--crates/sellershut/Cargo.toml10
-rw-r--r--crates/sellershut/src/main.rs3
2 files changed, 13 insertions, 0 deletions
diff --git a/crates/sellershut/Cargo.toml b/crates/sellershut/Cargo.toml
new file mode 100644
index 0000000..1ce8f74
--- /dev/null
+++ b/crates/sellershut/Cargo.toml
@@ -0,0 +1,10 @@
+[package]
+name = "sellershut"
+version = "0.1.0"
+edition = "2024"
+license.workspace = true
+readme.workspace = true
+documentation.workspace = true
+homepage.workspace = true
+
+[dependencies]
diff --git a/crates/sellershut/src/main.rs b/crates/sellershut/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/crates/sellershut/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}