aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-02-24 13:25:28 +0100
committerAlex Auvolat <alex@adnab.me>2022-03-14 10:54:24 +0100
commit203e8d2c345dabee56e31aebf88b706df5aa72e5 (patch)
treefdb8faf2c054fc241add484a3bb4efa7df4e9766
parentf869ca625d025d8c52af405392d2081bd81437a8 (diff)
downloadgarage-203e8d2c345dabee56e31aebf88b706df5aa72e5.tar.gz
garage-203e8d2c345dabee56e31aebf88b706df5aa72e5.zip
Bump version to 0.7 because of incompatible Netapp
-rw-r--r--Cargo.lock50
-rw-r--r--Cargo.nix102
-rw-r--r--src/admin/Cargo.toml4
-rw-r--r--src/api/Cargo.toml8
-rw-r--r--src/garage/Cargo.toml16
-rw-r--r--src/model/Cargo.toml8
-rw-r--r--src/rpc/Cargo.toml6
-rw-r--r--src/rpc/system.rs2
-rw-r--r--src/table/Cargo.toml6
-rw-r--r--src/util/Cargo.toml2
-rw-r--r--src/web/Cargo.toml10
11 files changed, 107 insertions, 107 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 098d92c5..bbd79449 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -817,7 +817,7 @@ dependencies = [
[[package]]
name = "garage"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"async-trait",
"aws-sdk-s3",
@@ -826,10 +826,10 @@ dependencies = [
"futures-util",
"garage_admin",
"garage_api",
- "garage_model 0.6.0",
- "garage_rpc 0.6.0",
- "garage_table 0.6.0",
- "garage_util 0.6.0",
+ "garage_model 0.7.0",
+ "garage_rpc 0.7.0",
+ "garage_table 0.7.0",
+ "garage_util 0.7.0",
"garage_web",
"git-version",
"hex",
@@ -852,11 +852,11 @@ dependencies = [
[[package]]
name = "garage_admin"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"futures",
"futures-util",
- "garage_util 0.6.0",
+ "garage_util 0.7.0",
"hex",
"http",
"hyper",
@@ -869,7 +869,7 @@ dependencies = [
[[package]]
name = "garage_api"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"base64",
"bytes 1.1.0",
@@ -879,9 +879,9 @@ dependencies = [
"form_urlencoded",
"futures",
"futures-util",
- "garage_model 0.6.0",
- "garage_table 0.6.0",
- "garage_util 0.6.0",
+ "garage_model 0.7.0",
+ "garage_table 0.7.0",
+ "garage_util 0.7.0",
"hex",
"hmac",
"http",
@@ -933,7 +933,7 @@ dependencies = [
[[package]]
name = "garage_model"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"arc-swap",
"async-trait",
@@ -941,9 +941,9 @@ dependencies = [
"futures",
"futures-util",
"garage_model 0.5.1",
- "garage_rpc 0.6.0",
- "garage_table 0.6.0",
- "garage_util 0.6.0",
+ "garage_rpc 0.7.0",
+ "garage_table 0.7.0",
+ "garage_util 0.7.0",
"hex",
"netapp 0.4.0",
"opentelemetry",
@@ -986,7 +986,7 @@ dependencies = [
[[package]]
name = "garage_rpc"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"arc-swap",
"async-trait",
@@ -994,7 +994,7 @@ dependencies = [
"futures",
"futures-util",
"garage_admin",
- "garage_util 0.6.0",
+ "garage_util 0.7.0",
"gethostname",
"hex",
"hyper",
@@ -1040,14 +1040,14 @@ dependencies = [
[[package]]
name = "garage_table"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"async-trait",
"bytes 1.1.0",
"futures",
"futures-util",
- "garage_rpc 0.6.0",
- "garage_util 0.6.0",
+ "garage_rpc 0.7.0",
+ "garage_util 0.7.0",
"hexdump",
"opentelemetry",
"rand 0.8.5",
@@ -1087,7 +1087,7 @@ dependencies = [
[[package]]
name = "garage_util"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"blake2",
"chrono",
@@ -1114,14 +1114,14 @@ dependencies = [
[[package]]
name = "garage_web"
-version = "0.6.0"
+version = "0.7.0"
dependencies = [
"err-derive 0.3.1",
"futures",
"garage_api",
- "garage_model 0.6.0",
- "garage_table 0.6.0",
- "garage_util 0.6.0",
+ "garage_model 0.7.0",
+ "garage_table 0.7.0",
+ "garage_util 0.7.0",
"http",
"hyper",
"opentelemetry",
diff --git a/Cargo.nix b/Cargo.nix
index 68f803c0..82ad7aba 100644
--- a/Cargo.nix
+++ b/Cargo.nix
@@ -44,14 +44,14 @@ in
{
cargo2nixVersion = "0.10.0";
workspace = {
- garage_util = rustPackages.unknown.garage_util."0.6.0";
- garage_rpc = rustPackages.unknown.garage_rpc."0.6.0";
- garage_admin = rustPackages.unknown.garage_admin."0.6.0";
- garage_table = rustPackages.unknown.garage_table."0.6.0";
- garage_model = rustPackages.unknown.garage_model."0.6.0";
- garage_api = rustPackages.unknown.garage_api."0.6.0";
- garage_web = rustPackages.unknown.garage_web."0.6.0";
- garage = rustPackages.unknown.garage."0.6.0";
+ garage_util = rustPackages.unknown.garage_util."0.7.0";
+ garage_rpc = rustPackages.unknown.garage_rpc."0.7.0";
+ garage_admin = rustPackages.unknown.garage_admin."0.7.0";
+ garage_table = rustPackages.unknown.garage_table."0.7.0";
+ garage_model = rustPackages.unknown.garage_model."0.7.0";
+ garage_api = rustPackages.unknown.garage_api."0.7.0";
+ garage_web = rustPackages.unknown.garage_web."0.7.0";
+ garage = rustPackages.unknown.garage."0.7.0";
};
"registry+https://github.com/rust-lang/crates.io-index".aho-corasick."0.7.18" = overridableMkRustCrate (profileName: rec {
name = "aho-corasick";
@@ -1163,9 +1163,9 @@ in
};
});
- "unknown".garage."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/garage");
dependencies = {
@@ -1173,13 +1173,13 @@ in
bytes = rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.1.0" { inherit profileName; };
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
- garage_admin = rustPackages."unknown".garage_admin."0.6.0" { inherit profileName; };
- garage_api = rustPackages."unknown".garage_api."0.6.0" { inherit profileName; };
- garage_model = rustPackages."unknown".garage_model."0.6.0" { inherit profileName; };
- garage_rpc = rustPackages."unknown".garage_rpc."0.6.0" { inherit profileName; };
- garage_table = rustPackages."unknown".garage_table."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
- garage_web = rustPackages."unknown".garage_web."0.6.0" { inherit profileName; };
+ garage_admin = rustPackages."unknown".garage_admin."0.7.0" { inherit profileName; };
+ garage_api = rustPackages."unknown".garage_api."0.7.0" { inherit profileName; };
+ garage_model = rustPackages."unknown".garage_model."0.7.0" { inherit profileName; };
+ garage_rpc = rustPackages."unknown".garage_rpc."0.7.0" { inherit profileName; };
+ garage_table = rustPackages."unknown".garage_table."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
+ garage_web = rustPackages."unknown".garage_web."0.7.0" { inherit profileName; };
git_version = rustPackages."registry+https://github.com/rust-lang/crates.io-index".git-version."0.3.5" { inherit profileName; };
hex = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hex."0.4.3" { inherit profileName; };
sodiumoxide = rustPackages."registry+https://github.com/rust-lang/crates.io-index".kuska-sodiumoxide."0.2.5-0" { inherit profileName; };
@@ -1203,15 +1203,15 @@ in
};
});
- "unknown".garage_admin."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_admin."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_admin";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/admin");
dependencies = {
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
hex = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hex."0.4.3" { inherit profileName; };
http = rustPackages."registry+https://github.com/rust-lang/crates.io-index".http."0.2.6" { inherit profileName; };
hyper = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hyper."0.14.17" { inherit profileName; };
@@ -1223,9 +1223,9 @@ in
};
});
- "unknown".garage_api."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_api."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_api";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/api");
dependencies = {
@@ -1237,9 +1237,9 @@ in
form_urlencoded = rustPackages."registry+https://github.com/rust-lang/crates.io-index".form_urlencoded."1.0.1" { inherit profileName; };
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
- garage_model = rustPackages."unknown".garage_model."0.6.0" { inherit profileName; };
- garage_table = rustPackages."unknown".garage_table."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_model = rustPackages."unknown".garage_model."0.7.0" { inherit profileName; };
+ garage_table = rustPackages."unknown".garage_table."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
hex = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hex."0.4.3" { inherit profileName; };
hmac = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hmac."0.10.1" { inherit profileName; };
http = rustPackages."registry+https://github.com/rust-lang/crates.io-index".http."0.2.6" { inherit profileName; };
@@ -1291,9 +1291,9 @@ in
};
});
- "unknown".garage_model."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_model."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_model";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/model");
dependencies = {
@@ -1303,9 +1303,9 @@ in
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
garage_model_050 = rustPackages."registry+https://github.com/rust-lang/crates.io-index".garage_model."0.5.1" { inherit profileName; };
- garage_rpc = rustPackages."unknown".garage_rpc."0.6.0" { inherit profileName; };
- garage_table = rustPackages."unknown".garage_table."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_rpc = rustPackages."unknown".garage_rpc."0.7.0" { inherit profileName; };
+ garage_table = rustPackages."unknown".garage_table."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
hex = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hex."0.4.3" { inherit profileName; };
netapp = rustPackages."registry+https://github.com/rust-lang/crates.io-index".netapp."0.4.0" { inherit profileName; };
opentelemetry = rustPackages."registry+https://github.com/rust-lang/crates.io-index".opentelemetry."0.17.0" { inherit profileName; };
@@ -1348,9 +1348,9 @@ in
};
});
- "unknown".garage_rpc."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_rpc."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_rpc";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/rpc");
dependencies = {
@@ -1359,8 +1359,8 @@ in
bytes = rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.1.0" { inherit profileName; };
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
- garage_admin = rustPackages."unknown".garage_admin."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_admin = rustPackages."unknown".garage_admin."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
gethostname = rustPackages."registry+https://github.com/rust-lang/crates.io-index".gethostname."0.2.2" { inherit profileName; };
hex = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hex."0.4.3" { inherit profileName; };
hyper = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hyper."0.14.17" { inherit profileName; };
@@ -1406,9 +1406,9 @@ in
};
});
- "unknown".garage_table."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_table."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_table";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/table");
dependencies = {
@@ -1416,8 +1416,8 @@ in
bytes = rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.1.0" { inherit profileName; };
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
futures_util = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures-util."0.3.21" { inherit profileName; };
- garage_rpc = rustPackages."unknown".garage_rpc."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_rpc = rustPackages."unknown".garage_rpc."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
hexdump = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hexdump."0.1.1" { inherit profileName; };
opentelemetry = rustPackages."registry+https://github.com/rust-lang/crates.io-index".opentelemetry."0.17.0" { inherit profileName; };
rand = rustPackages."registry+https://github.com/rust-lang/crates.io-index".rand."0.8.5" { inherit profileName; };
@@ -1457,9 +1457,9 @@ in
};
});
- "unknown".garage_util."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_util."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_util";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/util");
dependencies = {
@@ -1487,18 +1487,18 @@ in
};
});
- "unknown".garage_web."0.6.0" = overridableMkRustCrate (profileName: rec {
+ "unknown".garage_web."0.7.0" = overridableMkRustCrate (profileName: rec {
name = "garage_web";
- version = "0.6.0";
+ version = "0.7.0";
registry = "unknown";
src = fetchCrateLocal (workspaceSrc + "/src/web");
dependencies = {
err_derive = buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".err-derive."0.3.1" { profileName = "__noProfile"; };
futures = rustPackages."registry+https://github.com/rust-lang/crates.io-index".futures."0.3.21" { inherit profileName; };
- garage_api = rustPackages."unknown".garage_api."0.6.0" { inherit profileName; };
- garage_model = rustPackages."unknown".garage_model."0.6.0" { inherit profileName; };
- garage_table = rustPackages."unknown".garage_table."0.6.0" { inherit profileName; };
- garage_util = rustPackages."unknown".garage_util."0.6.0" { inherit profileName; };
+ garage_api = rustPackages."unknown".garage_api."0.7.0" { inherit profileName; };
+ garage_model = rustPackages."unknown".garage_model."0.7.0" { inherit profileName; };
+ garage_table = rustPackages."unknown".garage_table."0.7.0" { inherit profileName; };
+ garage_util = rustPackages."unknown".garage_util."0.7.0" { inherit profileName; };
http = rustPackages."registry+https://github.com/rust-lang/crates.io-index".http."0.2.6" { inherit profileName; };
hyper = rustPackages."registry+https://github.com/rust-lang/crates.io-index".hyper."0.14.17" { inherit profileName; };
opentelemetry = rustPackages."registry+https://github.com/rust-lang/crates.io-index".opentelemetry."0.17.0" { inherit profileName; };
@@ -2322,7 +2322,7 @@ in
[ "os-poll" ]
];
dependencies = {
- ${ if hostPlatform.parsed.kernel.name == "wasi" || hostPlatform.isUnix then "libc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.119" { inherit profileName; };
+ ${ if hostPlatform.isUnix || hostPlatform.parsed.kernel.name == "wasi" then "libc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.119" { inherit profileName; };
log = rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.14" { inherit profileName; };
${ if hostPlatform.isWindows then "miow" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".miow."0.3.7" { inherit profileName; };
${ if hostPlatform.isWindows then "ntapi" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".ntapi."0.3.7" { inherit profileName; };
@@ -4821,11 +4821,11 @@ in
[ "default" ]
];
dependencies = {
- ${ if hostPlatform.config == "aarch64-uwp-windows-msvc" || hostPlatform.config == "aarch64-pc-windows-msvc" then "windows_aarch64_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_msvc."0.32.0" { inherit profileName; };
+ ${ if hostPlatform.config == "aarch64-pc-windows-msvc" || hostPlatform.config == "aarch64-uwp-windows-msvc" then "windows_aarch64_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_msvc."0.32.0" { inherit profileName; };
${ if hostPlatform.config == "i686-uwp-windows-gnu" || hostPlatform.config == "i686-pc-windows-gnu" then "windows_i686_gnu" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_gnu."0.32.0" { inherit profileName; };
- ${ if hostPlatform.config == "i686-uwp-windows-msvc" || hostPlatform.config == "i686-pc-windows-msvc" then "windows_i686_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_msvc."0.32.0" { inherit profileName; };
- ${ if hostPlatform.config == "x86_64-uwp-windows-gnu" || hostPlatform.config == "x86_64-pc-windows-gnu" then "windows_x86_64_gnu" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnu."0.32.0" { inherit profileName; };
- ${ if hostPlatform.config == "x86_64-pc-windows-msvc" || hostPlatform.config == "x86_64-uwp-windows-msvc" then "windows_x86_64_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_msvc."0.32.0" { inherit profileName; };
+ ${ if hostPlatform.config == "i686-pc-windows-msvc" || hostPlatform.config == "i686-uwp-windows-msvc" then "windows_i686_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_msvc."0.32.0" { inherit profileName; };
+ ${ if hostPlatform.config == "x86_64-pc-windows-gnu" || hostPlatform.config == "x86_64-uwp-windows-gnu" then "windows_x86_64_gnu" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnu."0.32.0" { inherit profileName; };
+ ${ if hostPlatform.config == "x86_64-uwp-windows-msvc" || hostPlatform.config == "x86_64-pc-windows-msvc" then "windows_x86_64_msvc" else null } = rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_msvc."0.32.0" { inherit profileName; };
};
});
diff --git a/src/admin/Cargo.toml b/src/admin/Cargo.toml
index 01c16c57..2db4bb08 100644
--- a/src/admin/Cargo.toml
+++ b/src/admin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_admin"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Maximilien Richer <code@mricher.fr>"]
edition = "2018"
license = "AGPL-3.0"
@@ -13,7 +13,7 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { version = "0.6.0", path = "../util" }
+garage_util = { version = "0.7.0", path = "../util" }
hex = "0.4"
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml
index f39c6d04..d61a986f 100644
--- a/src/api/Cargo.toml
+++ b/src/api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_api"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,9 +14,9 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_model = { version = "0.6.0", path = "../model" }
-garage_table = { version = "0.6.0", path = "../table" }
-garage_util = { version = "0.6.0", path = "../util" }
+garage_model = { version = "0.7.0", path = "../model" }
+garage_table = { version = "0.7.0", path = "../table" }
+garage_util = { version = "0.7.0", path = "../util" }
base64 = "0.13"
bytes = "1.0"
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml
index ff0666a6..2f67d418 100644
--- a/src/garage/Cargo.toml
+++ b/src/garage/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -21,13 +21,13 @@ path = "tests/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_api = { version = "0.6.0", path = "../api" }
-garage_model = { version = "0.6.0", path = "../model" }
-garage_rpc = { version = "0.6.0", path = "../rpc" }
-garage_table = { version = "0.6.0", path = "../table" }
-garage_util = { version = "0.6.0", path = "../util" }
-garage_web = { version = "0.6.0", path = "../web" }
-garage_admin = { version = "0.6.0", path = "../admin" }
+garage_api = { version = "0.7.0", path = "../api" }
+garage_model = { version = "0.7.0", path = "../model" }
+garage_rpc = { version = "0.7.0", path = "../rpc" }
+garage_table = { version = "0.7.0", path = "../table" }
+garage_util = { version = "0.7.0", path = "../util" }
+garage_web = { version = "0.7.0", path = "../web" }
+garage_admin = { version = "0.7.0", path = "../admin" }
bytes = "1.0"
git-version = "0.3.4"
diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml
index 8083445e..64eae0f4 100644
--- a/src/model/Cargo.toml
+++ b/src/model/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_model"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,9 +14,9 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_rpc = { version = "0.6.0", path = "../rpc" }
-garage_table = { version = "0.6.0", path = "../table" }
-garage_util = { version = "0.6.0", path = "../util" }
+garage_rpc = { version = "0.7.0", path = "../rpc" }
+garage_table = { version = "0.7.0", path = "../table" }
+garage_util = { version = "0.7.0", path = "../util" }
garage_model_050 = { package = "garage_model", version = "0.5.1" }
async-trait = "0.1.7"
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml
index 72393921..a027f219 100644
--- a/src/rpc/Cargo.toml
+++ b/src/rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_rpc"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,8 +14,8 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_util = { version = "0.6.0", path = "../util" }
-garage_admin = { version = "0.6.0", path = "../admin" }
+garage_util = { version = "0.7.0", path = "../util" }
+garage_admin = { version = "0.7.0", path = "../admin" }
arc-swap = "1.0"
bytes = "1.0"
diff --git a/src/rpc/system.rs b/src/rpc/system.rs
index 2123a37f..741f68e2 100644
--- a/src/rpc/system.rs
+++ b/src/rpc/system.rs
@@ -39,7 +39,7 @@ const STATUS_EXCHANGE_INTERVAL: Duration = Duration::from_secs(10);
const PING_TIMEOUT: Duration = Duration::from_secs(2);
/// Version tag used for version check upon Netapp connection
-pub const GARAGE_VERSION_TAG: u64 = 0x6761726167650006; // garage 0x0006
+pub const GARAGE_VERSION_TAG: u64 = 0x6761726167650007; // garage 0x0007
/// RPC endpoint used for calls related to membership
pub const SYSTEM_RPC_PATH: &str = "garage_rpc/membership.rs/SystemRpc";
diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml
index bc09ca7c..ed1a213f 100644
--- a/src/table/Cargo.toml
+++ b/src/table/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_table"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,8 +14,8 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_rpc = { version = "0.6.0", path = "../rpc" }
-garage_util = { version = "0.6.0", path = "../util" }
+garage_rpc = { version = "0.7.0", path = "../rpc" }
+garage_util = { version = "0.7.0", path = "../util" }
opentelemetry = "0.17"
diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml
index e1d516de..dfa4e822 100644
--- a/src/util/Cargo.toml
+++ b/src/util/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_util"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
diff --git a/src/web/Cargo.toml b/src/web/Cargo.toml
index 81a8c995..59a1231d 100644
--- a/src/web/Cargo.toml
+++ b/src/web/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_web"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,10 +14,10 @@ path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_api = { version = "0.6.0", path = "../api" }
-garage_model = { version = "0.6.0", path = "../model" }
-garage_util = { version = "0.6.0", path = "../util" }
-garage_table = { version = "0.6.0", path = "../table" }
+garage_api = { version = "0.7.0", path = "../api" }
+garage_model = { version = "0.7.0", path = "../model" }
+garage_util = { version = "0.7.0", path = "../util" }
+garage_table = { version = "0.7.0", path = "../table" }
err-derive = "0.3"
tracing = "0.1.30"