aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2020-07-05 12:27:43 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2020-07-05 12:30:19 +0900
commit664b78d856db60d15074733cb31d3405d381e5e5 (patch)
tree3aa62b8d7f2969a27d5ecfcd4a4a0354cbb71f68
parent4451c59b4dd0b8647151c742e751d65932b8d86a (diff)
downloadhinoko-rs-664b78d856db60d15074733cb31d3405d381e5e5.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..79afdfa
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[workspace]
+members = [
+ "hinoko-sys",
+ "hinoko",
+]
+
+default-members = [
+ "hinoko",
+]