diff options
| author | rtkay123 <dev@kanjala.com> | 2025-11-23 10:22:32 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2025-11-23 10:22:32 +0200 |
| commit | 56a3de7433c2a1735df19f79b9e7c185ef456f88 (patch) | |
| tree | 80b42f7d885e6ec3a1e07b413b93581b0430ecd3 /crates | |
| parent | 2dce7add8564441bde4ee2bbf0fd099c8d6ce7db (diff) | |
| download | sellershut-56a3de7433c2a1735df19f79b9e7c185ef456f88.tar.bz2 sellershut-56a3de7433c2a1735df19f79b9e7c185ef456f88.zip | |
refactor: restructure workspace
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/sellershut/Cargo.toml | 10 | ||||
| -rw-r--r-- | crates/sellershut/src/main.rs | 3 |
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..e964cf7 --- /dev/null +++ b/crates/sellershut/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "sellershut" +version = "0.1.0" +edition = "2024" +license.workspace = true +homepage.workspace = true +documentation.workspace = true +description.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!"); +} |
