From e9ef2a9be831e7c5cb150433b6acde8f01b7ebed Mon Sep 17 00:00:00 2001 From: Victor Lopez Date: Thu, 20 Oct 2022 18:09:31 +0200 Subject: [PATCH] chore(workspace): add Cargo.toml with workspace setup This commit introduces a workspace structure with a `Cargo.toml`. Currently we have a single member `crypto`, but these can be added incrementally in the future. --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..33788f5 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[workspace] +members = [ + "crypto" +]