diff options
| author | rtkay123 <dev@kanjala.com> | 2026-02-08 11:20:43 +0200 |
|---|---|---|
| committer | rtkay123 <dev@kanjala.com> | 2026-02-08 11:20:43 +0200 |
| commit | 39486cdec7f9e7753d0e40be4b65ab18668caf26 (patch) | |
| tree | b49f99f26a9b452c4e64ed5d55eee5978cf4315e | |
| parent | 46ff5baab8bc54d63710b82d6fb16d0142deada7 (diff) | |
| download | sellershut-39486cdec7f9e7753d0e40be4b65ab18668caf26.tar.bz2 sellershut-39486cdec7f9e7753d0e40be4b65ab18668caf26.zip | |
chore: create workspace
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | Cargo.toml | 10 | ||||
| -rw-r--r-- | crates/sellershut/Cargo.toml | 9 | ||||
| -rw-r--r-- | crates/sellershut/src/main.rs | 3 |
5 files changed, 30 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..4856bee --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "sellershut" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..48036ad --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[workspace] +resolver = "3" +members = ["crates/*"] + +[workspace.package] +license = "AGPL-3.0-only" +readme = "README.md" +documentation = "https://books.kanjala.com/sellershut" + +[workspace.dependencies] diff --git a/crates/sellershut/Cargo.toml b/crates/sellershut/Cargo.toml new file mode 100644 index 0000000..fec9e08 --- /dev/null +++ b/crates/sellershut/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "sellershut" +version = "0.1.0" +edition = "2024" +license.workspace = true +readme.workspace = true +documentation.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!"); +} |
