diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/shirabe/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/shirabe/src/main.rs | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/crates/shirabe/Cargo.toml b/crates/shirabe/Cargo.toml new file mode 100644 index 0000000..597a886 --- /dev/null +++ b/crates/shirabe/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "shirabe" +version.workspace = true +edition.workspace = true diff --git a/crates/shirabe/src/main.rs b/crates/shirabe/src/main.rs new file mode 100644 index 0000000..0672e51 --- /dev/null +++ b/crates/shirabe/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, World!"); +} |
