Skip to content

Commit

Permalink
suppress doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshidan committed Feb 6, 2025
1 parent 3fd3094 commit c643369
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 1 deletion.
3 changes: 3 additions & 0 deletions artifact-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
description = "Google Cloud Platform Artifact Registry client library."
documentation = "https://docs.rs/gcloud-artifact-registry/latest/gcloud_artifact_registry/"

[lib]
doctest = false

[dependencies]
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 }
Expand Down
3 changes: 3 additions & 0 deletions bigquery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
description = "Google Cloud Platform bigquery client library."
documentation = "https://docs.rs/gcloud-bigquery/latest/gcloud_bigquery/"

[lib]
doctest = false

[dependencies]
async-trait = "0.1"
google-cloud-token = { package = "gcloud-token", version = "1.0.0", path = "../foundation/token" }
Expand Down
3 changes: 3 additions & 0 deletions foundation/auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
3 changes: 3 additions & 0 deletions foundation/gax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ 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"] }
Expand Down
3 changes: 3 additions & 0 deletions foundation/longrunning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ license = "MIT"
readme = "README.md"
description = "Google Cloud Platform longrunning library."

[lib]
doctest = false

[dependencies]
google-cloud-googleapis = { package = "gcloud-googleapis", version = "1.0.0", path = "../../googleapis" }
google-cloud-gax = { package = "gcloud-gax", version = "1.0.0", path = "../gax" }
Expand Down
3 changes: 3 additions & 0 deletions foundation/metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions foundation/token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ license = "MIT"
readme = "README.md"
description = "Google Cloud Platform token spec."

[lib]
doctest = false

[dependencies]
async-trait = "0.1"
3 changes: 2 additions & 1 deletion googleapis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
3 changes: 3 additions & 0 deletions kms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
description = "Google Cloud Platform Key Management Service client library."
documentation = "https://docs.rs/gcloud-kms/latest/gcloud_kms/"

[lib]
doctest = false

[dependencies]
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 }
Expand Down
3 changes: 3 additions & 0 deletions pubsub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
description = "Google Cloud Platform pubsub client library."
documentation = "https://docs.rs/gcloud-pubsub/latest/gcloud_pubsub/"

[lib]
doctest = false

[dependencies]
tracing = "0.1"
prost-types = "0.13"
Expand Down
1 change: 1 addition & 0 deletions spanner-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ description = "Google Cloud Platform spanner client library macro derive."
documentation = "https://docs.rs/gcloud-spanner/latest/gcloud_spanner_derive/"

[lib]
doctest = false
proc-macro = true

[dependencies]
Expand Down
3 changes: 3 additions & 0 deletions spanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
description = "Google Cloud Platform spanner client library."
documentation = "https://docs.rs/gcloud-spanner/latest/gcloud_spanner/"

[lib]
doctest = false

[dependencies]
tracing = "0.1"
prost-types = "0.13"
Expand Down
3 changes: 3 additions & 0 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ readme = "README.md"
repository = "https://github.com/yoshidan/google-cloud-rust/tree/main/storage"
version = "1.0.0"

[lib]
doctest = false

[dependencies]
anyhow = "1.0"
base64 = "0.21"
Expand Down

0 comments on commit c643369

Please sign in to comment.