diff --git a/Cargo.toml b/Cargo.toml index 517348ce..1aeccad1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +resolver = "2" members = [ "foundation/token", "foundation/metadata", diff --git a/bigquery/Cargo.toml b/bigquery/Cargo.toml index feb5471c..f51032ce 100644 --- a/bigquery/Cargo.toml +++ b/bigquery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-bigquery" -version = "0.4.1" +version = "0.5.0" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery" @@ -14,7 +14,7 @@ documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigqu async-trait = "0.1" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } google-cloud-googleapis = { version="0.11.0", path = "../googleapis", features=["bigquery"]} -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax"} +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax"} thiserror = "1.0" tracing = "0.1" reqwest = { version = "0.11", features = ["json", "stream", "multipart"], default-features = false } @@ -28,7 +28,7 @@ bigdecimal = { version="0.3", features=["serde"] } num-bigint = "0.4" backon = "0.4" -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/foundation/auth/Cargo.toml b/foundation/auth/Cargo.toml index 05d51e3a..e405c6f8 100644 --- a/foundation/auth/Cargo.toml +++ b/foundation/auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-auth" -version = "0.12.0" +version = "0.13.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth" @@ -20,7 +20,7 @@ async-trait = "0.1" home = "0.5" urlencoding = "2.1" tokio = { version = "1.32", features = ["fs"]} -google-cloud-metadata = { version = "0.3.2", path = "../metadata" } +google-cloud-metadata = { version = "0.4.0", path = "../metadata" } google-cloud-token = { version = "0.1.1", path = "../token" } base64 = "0.21" time = "0.3" diff --git a/foundation/gax/Cargo.toml b/foundation/gax/Cargo.toml index 67931b71..68d49bbb 100644 --- a/foundation/gax/Cargo.toml +++ b/foundation/gax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-gax" -version = "0.15.0" +version = "0.16.0" authors = ["yoshidan "] edition = "2018" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax" diff --git a/foundation/longrunning/Cargo.toml b/foundation/longrunning/Cargo.toml index 43bcd83c..7fac6ec7 100644 --- a/foundation/longrunning/Cargo.toml +++ b/foundation/longrunning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-longrunning" -version = "0.15.2" +version = "0.16.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning" @@ -11,6 +11,6 @@ description = "Google Cloud Platform longrunning library." [dependencies] google-cloud-googleapis = { version = "0.11.0", path = "../../googleapis" } -google-cloud-gax = { version = "0.15.0", path = "../gax" } +google-cloud-gax = { version = "0.16.0", path = "../gax" } tonic = { version = "0.9", features = ["tls", "prost"] } prost = "0.11" diff --git a/foundation/metadata/Cargo.toml b/foundation/metadata/Cargo.toml index c9d8684e..31444eb6 100644 --- a/foundation/metadata/Cargo.toml +++ b/foundation/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-metadata" -version = "0.3.2" +version = "0.4.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata" diff --git a/pubsub/Cargo.toml b/pubsub/Cargo.toml index c6d2e8eb..10d03189 100644 --- a/pubsub/Cargo.toml +++ b/pubsub/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-pubsub" -version = "0.20.0" +version = "0.21.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/pubsub" @@ -20,10 +20,10 @@ thiserror = "1.0" tokio-util = "0.7" google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" } +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["pubsub"]} -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/spanner-derive/Cargo.toml b/spanner-derive/Cargo.toml index c82a9a8f..2a51cfc0 100644 --- a/spanner-derive/Cargo.toml +++ b/spanner-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner-derive" -version = "0.1.0" +version = "0.2.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/macro/spanner" diff --git a/spanner/Cargo.toml b/spanner/Cargo.toml index 53bb7381..8289ab3a 100644 --- a/spanner/Cargo.toml +++ b/spanner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-spanner" -version = "0.23.1" +version = "0.24.0" authors = ["yoshidan "] edition = "2021" repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/spanner" @@ -24,11 +24,11 @@ tokio-util = "0.7" bigdecimal = { version="0.3", features=["serde"] } google-cloud-token = { version = "0.1.1", path = "../foundation/token" } -google-cloud-longrunning = { version = "0.15.2", path = "../foundation/longrunning" } -google-cloud-gax = { version = "0.15.0", path = "../foundation/gax" } +google-cloud-longrunning = { version = "0.16.0", path = "../foundation/longrunning" } +google-cloud-gax = { version = "0.16.0", path = "../foundation/gax" } google-cloud-googleapis = { version = "0.11.0", path = "../googleapis", features = ["spanner"]} -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] } diff --git a/storage/Cargo.toml b/storage/Cargo.toml index b58497eb..244c0148 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-cloud-storage" -version = "0.13.1" +version = "0.14.0" edition = "2021" authors = ["yoshidan "] repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage" @@ -32,8 +32,8 @@ percent-encoding = "2.3" futures-util = "0.3" bytes = "1.5" -google-cloud-metadata = { optional = true, version = "0.3", path = "../foundation/metadata" } -google-cloud-auth = { optional = true, version = "0.12", path="../foundation/auth", default-features=false } +google-cloud-metadata = { optional = true, version = "0.4", path = "../foundation/metadata" } +google-cloud-auth = { optional = true, version = "0.13", path="../foundation/auth", default-features=false } [dev-dependencies] tokio = { version="1.32", features=["rt-multi-thread"] }