aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-03-19 13:39:18 +0100
committerAlex Auvolat <alex@adnab.me>2021-03-19 13:39:18 +0100
commitf859d1506276431cb7dd971009d1c010e4c4fbc0 (patch)
tree3dedcffda8f8869a7b3f826602743c781f2c43bd
parentfd8f4caa8133d509610b13ee99ac60d1adadaca3 (diff)
downloadgarage-release-v0.2.1.tar.gz
garage-release-v0.2.1.zip
update to v0.2.1v0.2.1release-v0.2.1
-rw-r--r--Cargo.lock18
-rw-r--r--src/api/Cargo.toml8
-rw-r--r--src/garage/Cargo.toml14
-rw-r--r--src/model/Cargo.toml8
-rw-r--r--src/rpc/Cargo.toml4
-rw-r--r--src/table/Cargo.toml6
-rw-r--r--src/util/Cargo.toml2
-rw-r--r--src/web/Cargo.toml10
8 files changed, 35 insertions, 35 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 296c654e..5dc83dfa 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -350,7 +350,7 @@ dependencies = [
[[package]]
name = "garage"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"bytes",
"futures",
@@ -376,7 +376,7 @@ dependencies = [
[[package]]
name = "garage_api"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"base64",
"bytes",
@@ -405,7 +405,7 @@ dependencies = [
[[package]]
name = "garage_model"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"arc-swap",
"futures",
@@ -425,7 +425,7 @@ dependencies = [
[[package]]
name = "garage_rpc"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"arc-swap",
"bytes",
@@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "garage_table"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"bytes",
"futures",
@@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "garage_util"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"blake2",
"chrono",
@@ -494,7 +494,7 @@ dependencies = [
[[package]]
name = "garage_web"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"err-derive",
"futures",
@@ -777,9 +777,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
-version = "0.2.89"
+version = "0.2.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "538c092e5586f4cdd7dd8078c4a79220e3e168880218124dcbce860f0ea938c6"
+checksum = "ba4aede83fc3617411dc6993bc8c70919750c1c257c6ca6a502aed6e0e2394ae"
[[package]]
name = "lock_api"
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml
index 1c2ac544..0b824ca3 100644
--- a/src/api/Cargo.toml
+++ b/src/api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_api"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -13,9 +13,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.2.0", path = "../model" }
-garage_table = { version = "0.2.0", path = "../table" }
-garage_util = { version = "0.2.0", path = "../util" }
+garage_model = { version = "0.2.1", path = "../model" }
+garage_table = { version = "0.2.1", path = "../table" }
+garage_util = { version = "0.2.1", path = "../util" }
base64 = "0.13"
bytes = "1.0"
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml
index 17d631c7..b6fc139b 100644
--- a/src/garage/Cargo.toml
+++ b/src/garage/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -14,12 +14,12 @@ path = "main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-garage_api = { version = "0.2.0", path = "../api" }
-garage_model = { version = "0.2.0", path = "../model" }
-garage_rpc = { version = "0.2.0", path = "../rpc" }
-garage_table = { version = "0.2.0", path = "../table" }
-garage_util = { version = "0.2.0", path = "../util" }
-garage_web = { version = "0.2.0", path = "../web" }
+garage_api = { version = "0.2.1", path = "../api" }
+garage_model = { version = "0.2.1", path = "../model" }
+garage_rpc = { version = "0.2.1", path = "../rpc" }
+garage_table = { version = "0.2.1", path = "../table" }
+garage_util = { version = "0.2.1", path = "../util" }
+garage_web = { version = "0.2.1", path = "../web" }
bytes = "1.0"
git-version = "0.3.4"
diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml
index ea706e87..77084531 100644
--- a/src/model/Cargo.toml
+++ b/src/model/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_model"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -13,9 +13,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.2.0", path = "../rpc" }
-garage_table = { version = "0.2.0", path = "../table" }
-garage_util = { version = "0.2.0", path = "../util" }
+garage_rpc = { version = "0.2.1", path = "../rpc" }
+garage_table = { version = "0.2.1", path = "../table" }
+garage_util = { version = "0.2.1", path = "../util" }
arc-swap = "1.0"
hex = "0.4"
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml
index 41d4e0eb..622f8ebc 100644
--- a/src/rpc/Cargo.toml
+++ b/src/rpc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_rpc"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
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.2.0", path = "../util" }
+garage_util = { version = "0.2.1", path = "../util" }
arc-swap = "1.0"
bytes = "1.0"
diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml
index c51bd3bd..9b7e905c 100644
--- a/src/table/Cargo.toml
+++ b/src/table/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_table"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
@@ -13,8 +13,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.2.0", path = "../rpc" }
-garage_util = { version = "0.2.0", path = "../util" }
+garage_rpc = { version = "0.2.1", path = "../rpc" }
+garage_util = { version = "0.2.1", path = "../util" }
bytes = "1.0"
hexdump = "0.1"
diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml
index a83c876b..79611752 100644
--- a/src/util/Cargo.toml
+++ b/src/util/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_util"
-version = "0.2.0"
+version = "0.2.1"
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 9c513dd2..6c3b3a9a 100644
--- a/src/web/Cargo.toml
+++ b/src/web/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "garage_web"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
edition = "2018"
license = "AGPL-3.0"
@@ -13,10 +13,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.2.0", path = "../api" }
-garage_model = { version = "0.2.0", path = "../model" }
-garage_util = { version = "0.2.0", path = "../util" }
-garage_table = { version = "0.2.0", path = "../table" }
+garage_api = { version = "0.2.1", path = "../api" }
+garage_model = { version = "0.2.1", path = "../model" }
+garage_util = { version = "0.2.1", path = "../util" }
+garage_table = { version = "0.2.1", path = "../table" }
err-derive = "0.3"
idna = "0.2"