From 4e3c4aa8ce2c38f765a94a5974a65ba4f8da145b Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Thu, 19 Feb 2026 14:48:30 -0800 Subject: [PATCH] Add frost-taproot --- frost-taproot/Cargo.toml | 6 ++++++ frost-taproot/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 frost-taproot/Cargo.toml create mode 100644 frost-taproot/src/main.rs diff --git a/frost-taproot/Cargo.toml b/frost-taproot/Cargo.toml new file mode 100644 index 0000000..34a4e89 --- /dev/null +++ b/frost-taproot/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "frost-taproot" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/frost-taproot/src/main.rs b/frost-taproot/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/frost-taproot/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}