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.
This commit is contained in:
Victor Lopez 2022-10-20 18:09:31 +02:00
parent ebf9557d1c
commit e9ef2a9be8
No known key found for this signature in database
GPG key ID: DE1CBCF58160A41D

4
Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[workspace]
members = [
"crypto"
]