-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #352 from yoshidan/rename_crate
[IMPORTANT] Transfer namespace to Google Cloud Official.
- Loading branch information
Showing
31 changed files
with
146 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
[package] | ||
name = "google-cloud-artifact-registry" | ||
version = "0.8.0" | ||
name = "gcloud-artifact-registry" | ||
version = "1.0.0" | ||
edition = "2021" | ||
authors = ["yoshidan <[email protected]>"] | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/artifact-registry" | ||
keywords = ["gcp", "artifacts-registry","googleapis","google-cloud-rust"] | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "Google Cloud Platform Artifact Registry client library." | ||
documentation = "https://docs.rs/google-cloud-artifact-registry/latest/google_cloud_artifact_registry/" | ||
documentation = "https://docs.rs/gcloud-artifact-registry/latest/gcloud_artifact_registry/" | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
google-cloud-token = { version = "0.1.2", path = "../foundation/token" } | ||
google-cloud-auth = { optional = true, version = "0.17", path="../foundation/auth", default-features=false } | ||
google-cloud-googleapis = { version="0.16.0", path = "../googleapis", features=["artifact-registry"]} | ||
google-cloud-gax = { version = "0.19.2", path = "../foundation/gax"} | ||
google-cloud-longrunning = { version = "0.21.0", path = "../foundation/longrunning" } | ||
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../foundation/token" } | ||
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.0.0", path="../foundation/auth", default-features=false } | ||
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["artifact-registry"]} | ||
google-cloud-gax = { package = "gcloud-gax", version = "1.0.0", path = "../foundation/gax"} | ||
google-cloud-longrunning = { package = "gcloud-longrunning", version = "1.0.0", path = "../foundation/longrunning" } | ||
tracing = "0.1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
thiserror = "1.0" | ||
prost-types = "0.13" | ||
|
||
[dev-dependencies] | ||
tokio = { version="1.32", features=["rt-multi-thread"] } | ||
serial_test = "3.1" | ||
tracing-subscriber = { version="0.3.17", features=["env-filter"]} | ||
ctor = "0.1" | ||
tokio-util = {version ="0.7", features = ["codec"] } | ||
google-cloud-auth = { path = "../foundation/auth", default-features=false } | ||
google-cloud-auth = { package = "gcloud-auth", path = "../foundation/auth", default-features=false } | ||
|
||
[features] | ||
default = ["default-tls", "auth"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
[package] | ||
name = "google-cloud-bigquery" | ||
version = "0.15.0" | ||
name = "gcloud-bigquery" | ||
version = "1.0.0" | ||
edition = "2021" | ||
authors = ["yoshidan <[email protected]>"] | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/bigquery" | ||
keywords = ["gcp","bigquery","googleapis","google-cloud-rust"] | ||
license = "MIT" | ||
readme = "README.md" | ||
description = "Google Cloud Platform bigquery client library." | ||
documentation = "https://docs.rs/google-cloud-bigquery/latest/google_cloud_bigquery/" | ||
documentation = "https://docs.rs/gcloud-bigquery/latest/gcloud_bigquery/" | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
async-trait = "0.1" | ||
google-cloud-token = { version = "0.1.2", path = "../foundation/token" } | ||
google-cloud-googleapis = { version="0.16.0", path = "../googleapis", features=["bigquery"]} | ||
google-cloud-gax = { version = "0.19.2", path = "../foundation/gax"} | ||
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../foundation/token" } | ||
google-cloud-googleapis = { package = "gcloud-googleapis", version="1.0.0", path = "../googleapis", features=["bigquery"]} | ||
google-cloud-gax = { package = "gcloud-gax", version = "1.0.0", path = "../foundation/gax"} | ||
thiserror = "1.0" | ||
tracing = "0.1" | ||
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart", "charset"], default-features = false } | ||
|
@@ -32,15 +35,14 @@ anyhow = "1.0" | |
async-stream = "0.3" | ||
prost-types = "0.13" | ||
|
||
google-cloud-auth = { optional = true, version = "0.17", path="../foundation/auth", default-features=false } | ||
google-cloud-auth = { package = "gcloud-auth", optional = true, version = "1.0.0", path="../foundation/auth", default-features=false } | ||
|
||
[dev-dependencies] | ||
tokio = { version="1.32", features=["rt-multi-thread"] } | ||
serial_test = "3.1" | ||
tracing-subscriber = { version="0.3.17", features=["env-filter"] } | ||
ctor = "0.1.26" | ||
tokio-util = {version ="0.7", features = ["codec"] } | ||
google-cloud-auth = { path = "../foundation/auth", default-features=false } | ||
google-cloud-auth = { package = "gcloud-auth", path = "../foundation/auth", default-features=false } | ||
base64-serde = "0.7" | ||
prost = "0.13" | ||
futures-util = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-auth" | ||
version = "0.17.2" | ||
name = "gcloud-auth" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/auth" | ||
|
@@ -9,6 +9,9 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform server application authentication library." | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
tracing = "0.1" | ||
reqwest = { version = "0.12.4", features = ["json", "charset"], default-features = false } | ||
|
@@ -20,8 +23,8 @@ async-trait = "0.1" | |
home = "0.5" | ||
urlencoding = "2.1" | ||
tokio = { version = "1.32", features = ["fs"] } | ||
google-cloud-metadata = { version = "0.5.0", path = "../metadata" } | ||
google-cloud-token = { version = "0.1.2", path = "../token" } | ||
google-cloud-metadata = { package = "gcloud-metadata", version = "1.0.0", path = "../metadata" } | ||
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../token" } | ||
base64 = "0.21" | ||
time = "0.3" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-gax" | ||
version = "0.19.2" | ||
name = "gcloud-gax" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/gax" | ||
|
@@ -9,12 +9,15 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform gRPC retry library." | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
tracing = "0.1" | ||
tokio = { version = "1.32", features = ["macros"] } | ||
tonic = { version = "0.12", default-features = false, features = ["prost", "tls-webpki-roots"] } | ||
thiserror = "1.0" | ||
tower = { version = "0.4", features = ["filter", "util"] } | ||
http = "1.1" | ||
google-cloud-token = { version = "0.1.2", path = "../token" } | ||
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../token" } | ||
tokio-retry2 = "0.5.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-longrunning" | ||
version = "0.21.0" | ||
name = "gcloud-longrunning" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/longrunning" | ||
|
@@ -9,8 +9,11 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform longrunning library." | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
google-cloud-googleapis = { version = "0.16.0", path = "../../googleapis" } | ||
google-cloud-gax = { version = "0.19.2", path = "../gax" } | ||
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../../googleapis" } | ||
google-cloud-gax = { package = "gcloud-gax", version = "1.0.0", path = "../gax" } | ||
tonic = { version = "0.12", default-features = false } | ||
prost = "0.13" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-metadata" | ||
version = "0.5.1" | ||
name = "gcloud-metadata" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/metadata" | ||
|
@@ -9,6 +9,9 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform rust client." | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
tokio = { version = "1.32", features = ["sync", "net", "parking_lot"] } | ||
# this crate uses http only | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-token" | ||
version = "0.1.2" | ||
name = "gcloud-token" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/foundation/token" | ||
|
@@ -9,5 +9,8 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform token spec." | ||
|
||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
async-trait = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "google-cloud-googleapis" | ||
version = "0.16.1" | ||
name = "gcloud-googleapis" | ||
version = "1.0.0" | ||
authors = ["yoshidan <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/googleapis" | ||
|
@@ -9,7 +9,8 @@ license = "MIT" | |
readme = "README.md" | ||
description = "Google Cloud Platform rust client." | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lib] | ||
doctest = false | ||
|
||
[dependencies] | ||
tonic = { version = "0.12", default-features = false, features = ["channel", "prost", "codegen", "gzip"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.