aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/warden/Cargo.toml10
-rw-r--r--crates/warden/src/main.rs3
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!");
+}