diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-08 07:01:16 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-08 07:01:16 +0200 |
commit | 9e2288d44f88e39d43d63d5da1cc8f1528ffd840 (patch) | |
tree | 9f8f7304d38cbdd17a42c2872de9065936e7deef /crates | |
parent | 98c42ac8a5a2f129e6d0f63f550fefdc9a868daf (diff) | |
download | warden-9e2288d44f88e39d43d63d5da1cc8f1528ffd840.tar.bz2 warden-9e2288d44f88e39d43d63d5da1cc8f1528ffd840.zip |
chore: create cargo workspace
Diffstat (limited to 'crates')
-rw-r--r-- | crates/warden/Cargo.toml | 10 | ||||
-rw-r--r-- | crates/warden/src/main.rs | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/crates/warden/Cargo.toml b/crates/warden/Cargo.toml new file mode 100644 index 0000000..f69d5db --- /dev/null +++ b/crates/warden/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "warden" +version = "0.1.0" +edition = "2024" +license.workspace = true +homepage.workspace = true +documentation.workspace = true +description.workspace = true + +[dependencies] diff --git a/crates/warden/src/main.rs b/crates/warden/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/crates/warden/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |