summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/Cargo.toml.tt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/templates/newgem/Cargo.toml.tt')
-rw-r--r--lib/bundler/templates/newgem/Cargo.toml.tt7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/bundler/templates/newgem/Cargo.toml.tt b/lib/bundler/templates/newgem/Cargo.toml.tt
new file mode 100644
index 0000000000..f5a460c9bb
--- /dev/null
+++ b/lib/bundler/templates/newgem/Cargo.toml.tt
@@ -0,0 +1,7 @@
+# This Cargo.toml is here to let externals tools (IDEs, etc.) know that this is
+# a Rust project. Your extensions dependencies should be added to the Cargo.toml
+# in the ext/ directory.
+
+[workspace]
+members = ["./ext/<%= config[:name] %>"]
+resolver = "2"