From b7e83ba9a37b29a80bad48da5d103d5d51fda46c Mon Sep 17 00:00:00 2001 From: Ivan Fraixedes Date: Thu, 30 May 2024 12:20:48 +0200 Subject: [PATCH] uplink-sys(deps): Bump uplink-c version to v1.9.0 Bump the uplink-c version to the last published release v1.9.0 (minor release) and bindgen. Bump the uplink-sys crate version to a new minor release to reflect these dependencies updates. --- uplink-sys/Cargo.toml | 6 +++--- uplink-sys/uplink-c | 2 +- uplink/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/uplink-sys/Cargo.toml b/uplink-sys/Cargo.toml index c41d830..c49e0c9 100644 --- a/uplink-sys/Cargo.toml +++ b/uplink-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uplink-sys" -version = "0.6.1" +version = "0.7.0" authors = ["Cameron Fyfe ", "utropicmedia"] edition = "2021" links = "uplink" @@ -12,13 +12,13 @@ keywords = ["storj", "storage"] # Contains relevant information of the Uplink c-binding. [package.metadata.uplink-c] -version = "1.8.1" # keep it manually in sync with the git-submodule uplink-c checkout version tag. +version = "1.9.0" # keep it manually in sync with the git-submodule uplink-c checkout version tag. [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" targets = [] # Do not build the doc with any other target than the default. [build-dependencies] -bindgen = "0.68.1" +bindgen = "0.69.4" [dependencies] diff --git a/uplink-sys/uplink-c b/uplink-sys/uplink-c index 8acf5cd..4ecaa42 160000 --- a/uplink-sys/uplink-c +++ b/uplink-sys/uplink-c @@ -1 +1 @@ -Subproject commit 8acf5cd55f4ea91057cb0f37eabfc4ea5b63f0f7 +Subproject commit 4ecaa42f90a18b243ebacbc0a035ac62e17ecdca diff --git a/uplink/Cargo.toml b/uplink/Cargo.toml index c7e7e76..f6cecfe 100644 --- a/uplink/Cargo.toml +++ b/uplink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uplink" -version = "0.8.1" +version = "0.9.0" authors = ["Ivan Fraixedes "] edition = "2021" description = "Idiomatic and safe Rust binding for the Storj Lib Uplink" @@ -12,7 +12,7 @@ homepage = "https://storj.io" [dependencies] -uplink-sys = { path = "../uplink-sys", version = "0.6.1" } +uplink-sys = { path = "../uplink-sys", version = "0.7.0" } [dev-dependencies] rand = "0.8.5"