Skip to content

Commit 18a2844

Browse files
chore(deps): update rust docker digest to 6e6d04b (#57)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | rust | final | digest | `f1cbe94` -> `6e6d04b` | --- ### Configuration 📅 **Schedule**: Branch creation - Between 08:00 AM and 10:59 AM ( * 8-10 * * * ) in timezone Europe/Paris, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was created by Renovate. <details> <summary>Details</summary> Check the [default configuration](https://redirect.github.com/doctolib/renovate-config) and [documentation](https://doctolib.atlassian.net/wiki/spaces/EE/pages/1882882081/Renovate+Dependencies+Management). See the [logs on Datadog](https://app.datadoghq.com/logs?query=source%3Agithub%20%40git.repository_url%3A%22https%3A%2F%2Fgithub.com%2Fdoctolib%2Frenovate-config.git%22%20%40ci.pipeline.name%3A%28Run%5C%20Renovate%5C%20%5C%28%2A%20OR%20%22Run%20Renovate%20on%20doctolib%2Fdoctolib%22%29%20%40name%3Arenovate%20%40repository%3A%2A%2A%2A%2Fcouchbase-lite-rust&agg_m=count&agg_m_source=base&agg_t=count&cols=%40repository&fromUser=false&messageDisplay=inline&refresh_mode=sliding&storage=hot&stream_sort=time%2Cdesc&viz=stream). To replay this update, you can use the following `packageRules` on the [Manual Run](https://redirect.github.com/doctolib/renovate-config/actions/workflows/manual_run.yml) page: `[{"matchPackageNames": ["*"], "enabled": false}, {"matchPackageNames": ["rust"], "enabled": true}]` </details> <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43My4yIiwidXBkYXRlZEluVmVyIjoiNDEuODIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0by1hcHByb3ZlIiwiZGVwZW5kZW5jaWVzIiwiZGlnZXN0IiwiZG9ja2VyZmlsZSJdfQ==--> --------- Co-authored-by: doctolib-renovate[bot] <161009298+doctolib-renovate[bot]@users.noreply.github.com> Co-authored-by: Antoine Mencière <[email protected]>
1 parent ed575a5 commit 18a2844

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=amd64 rust@sha256:f1cbe94e8dbfa9deaa8a7d90d801ed81db2a84c363276b6a93055d3c4bba7409 AS strip-stage
1+
FROM --platform=amd64 rust@sha256:6e6d04bd50cd4c433a805c58c13f186a508c5b5417b9b61cae40ec28e0593c51 AS strip-stage
22
ARG DIRNAME
33
RUN apt-get update
44
RUN apt-get -y install binutils binutils-aarch64-linux-gnu

tests/document_tests.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ fn document_new() {
1616
assert_ne!(document.id(), "");
1717
assert_eq!(document.revision_id(), None);
1818
assert_eq!(document.sequence(), 0);
19-
assert!(document.properties());
2019
assert_eq!(document.properties().count(), 0);
2120
}
2221

@@ -29,7 +28,6 @@ fn document_new_with_id() {
2928
assert_eq!(document.id(), "foo");
3029
assert_eq!(document.revision_id(), None);
3130
assert_eq!(document.sequence(), 0);
32-
assert!(document.properties());
3331
assert_eq!(document.properties().count(), 0);
3432
}
3533

tests/fleece_tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ fn basic_values() {
7272
assert_eq!(dict.get("s").as_string(), Some("Foo"));
7373

7474
let a = dict.get("a").as_array();
75-
assert!(a);
7675
assert_eq!(a, a);
7776
assert_eq!(a.count(), 2);
7877
assert_eq!(a.get(0).as_i64(), Some(1));

0 commit comments

Comments
 (0)