diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2020-09-09 21:52:02 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2020-09-09 21:52:02 +0800 |
commit | 680c8633e6206085ad417c6055e17f6d30f462a4 (patch) | |
tree | a5705677367d845739c441a0b4e578e8765e1a74 /add/Cargo.toml | |
parent | 0caa5fb8e4e084248e6c4e7d3314854eb7bc4e7f (diff) |
Manage multiple packages using workspaces
Diffstat (limited to 'add/Cargo.toml')
-rw-r--r-- | add/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/add/Cargo.toml b/add/Cargo.toml new file mode 100644 index 0000000..37b9688 --- /dev/null +++ b/add/Cargo.toml @@ -0,0 +1,7 @@ +[workspace] + +members = [ + "adder", + "add-one", +] + |