diff --git a/rust-bindings/rust/.gitlab-ci.yml b/rust-bindings/rust/.gitlab-ci.yml index 4461e85d..f15d61eb 100644 --- a/rust-bindings/rust/.gitlab-ci.yml +++ b/rust-bindings/rust/.gitlab-ci.yml @@ -35,13 +35,12 @@ build_all-features: stage: build script: - cargo clippy --all --features ${OSTREE_VERSION},futures -- -D warnings - - cargo test --verbose --manifest-path sys/Cargo.toml --features ${OSTREE_VERSION} - - cargo test --verbose --features ${OSTREE_VERSION},futures + - cargo test --verbose --all --features ${OSTREE_VERSION},futures build_default-features: stage: build script: - - cargo test --verbose + - cargo test --verbose --all # docs docs: diff --git a/rust-bindings/rust/Cargo.toml b/rust-bindings/rust/Cargo.toml index dff9b634..0f61a620 100644 --- a/rust-bindings/rust/Cargo.toml +++ b/rust-bindings/rust/Cargo.toml @@ -28,6 +28,9 @@ repository = "fkrull/ostree-rs" [lib] name = "ostree" +[workspace] +members = ["sys"] + [dependencies] libc = "0.2" bitflags = "1"