aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2020-07-05 11:37:17 +0900
committer坂本 貴史 <o-takashi@sakamocchi.jp>2020-07-05 13:38:40 +0900
commit8d99fccde529970dcb0a89adc2a61fc9e18d0e03 (patch)
treec4c0064154119e13c19e2b58448b0b1a64a2ffcc
parent8fa042044acad9c5b690eebd8dee2299287c3a33 (diff)
downloadhinawa-rs-8d99fccde529970dcb0a89adc2a61fc9e18d0e03.tar.gz
add Cargo Workspace support
Cargo has a feature called as Workspace to aggregate several crates under control. The feature is useful for this project because several FFI/Safe crates are already under control. This commit adds Workspace support. All of FFI/Safe crates are under the additional workspace. All of Safe crates are handled as a default due to test failure for FFI crates. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--Cargo.toml9
1 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..8f67965
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[workspace]
+members = [
+ "hinawa-sys",
+ "hinawa",
+]
+
+default-members = [
+ "hinawa",
+]