From e9ec6462bcd0d6040093dc1ba44504cbf9634929 Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Tue, 16 Oct 2018 18:20:03 +0200 Subject: [PATCH] Add workspace Cargo.toml --- rust-bindings/rust/.gitignore | 6 ++---- rust-bindings/rust/Cargo.toml | 5 +++++ 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 rust-bindings/rust/Cargo.toml diff --git a/rust-bindings/rust/.gitignore b/rust-bindings/rust/.gitignore index d1b2bb90..64e0a74b 100644 --- a/rust-bindings/rust/.gitignore +++ b/rust-bindings/rust/.gitignore @@ -1,7 +1,5 @@ /.idea /tools -/*/target **/*.rs.bk - -/libostree-sys/Cargo.lock -/libostree/Cargo.lock +target/ +Cargo.lock diff --git a/rust-bindings/rust/Cargo.toml b/rust-bindings/rust/Cargo.toml new file mode 100644 index 00000000..f391e0a0 --- /dev/null +++ b/rust-bindings/rust/Cargo.toml @@ -0,0 +1,5 @@ +[workspace] +members = [ + "libostree-sys", + "libostree" +]