From 687cedcba4b9740f5318a3f64bb803ef404f378e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Wed, 16 Oct 2024 10:09:20 -0700 Subject: [PATCH 1/2] Add Dependabot configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add configuration for Dependabot to automatically update dependencies, if possible. Updates are currently managed Cargo.toml based Rust dependencies. Signed-off-by: Daniel Müller --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..ecf685ac --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: cargo + versioning-strategy: auto + directory: examples/rust/ + schedule: + interval: daily From 5c768aec86071e83ada143fc6121b7b22d29d1e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:37:32 +0000 Subject: [PATCH 2/2] build(deps): bump object from 0.25.3 to 0.36.5 in /examples/rust Bumps [object](https://github.com/gimli-rs/object) from 0.25.3 to 0.36.5. - [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/object/compare/0.25.3...0.36.5) --- updated-dependencies: - dependency-name: object dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- examples/rust/Cargo.lock | 30 ++++++++++++++++++++++++++++-- examples/rust/tracecon/Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/examples/rust/Cargo.lock b/examples/rust/Cargo.lock index 03156968..b07112ae 100644 --- a/examples/rust/Cargo.lock +++ b/examples/rust/Cargo.lock @@ -691,12 +691,13 @@ dependencies = [ [[package]] name = "object" -version = "0.25.3" +version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a38f2be3697a57b4060074ff41b44c16870d916ad7877c17696e063257482bc7" +checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e" dependencies = [ "flate2", "memchr", + "ruzstd", ] [[package]] @@ -870,6 +871,15 @@ version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "092474d1a01ea8278f69e6a358998405fae5b8b963ddaeb2b0b04a128bf1dfb0" +[[package]] +name = "ruzstd" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99c3938e133aac070997ddc684d4b393777d293ba170f2988c8fd5ea2ad4ce21" +dependencies = [ + "twox-hash", +] + [[package]] name = "ryu" version = "1.0.18" @@ -960,6 +970,12 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + [[package]] name = "strsim" version = "0.8.0" @@ -1193,6 +1209,16 @@ dependencies = [ "tracing-log", ] +[[package]] +name = "twox-hash" +version = "1.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" +dependencies = [ + "cfg-if", + "static_assertions", +] + [[package]] name = "unicode-ident" version = "1.0.12" diff --git a/examples/rust/tracecon/Cargo.toml b/examples/rust/tracecon/Cargo.toml index 96e28931..83aa9c14 100644 --- a/examples/rust/tracecon/Cargo.toml +++ b/examples/rust/tracecon/Cargo.toml @@ -11,7 +11,7 @@ libbpf-rs = "0.19" libc = "0.2" structopt = "0.3" ctrlc = "3.1" -object = "0.25" +object = "0.36" plain = "0.2" [build-dependencies]