run only tests that are actually used/implemented

This commit is contained in:
Sebastian Thiel
2022-09-29 09:02:05 +08:00
parent 7ef96f2a31
commit a1e6496ccd
3 changed files with 12 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ license = "MIT"
keywords = ["google", "web", "api", "common"]
edition = "2021"
[lib]
doctest = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -7,11 +7,14 @@ authors = ["Sebastian Thiel <byronimo@gmail.com>"]
repository = "https://github.com/Byron/google-apis-rs"
homepage = "https://github.com/Byron/google-apis-rs/google-clis-common"
documentation = "https://docs.rs/google-clis-common"
description = "Shared functionality among the google-api crates."
description = "Shared functionality among the google-api CLI crates."
license = "MIT"
keywords = ["google", "web", "api", "cli", "common"]
edition = "2021"
[lib]
doctest = false
[dependencies]
mime = "0.2"
yup-oauth2 = "^ 7.0"

View File

@@ -5,6 +5,12 @@ authors = ["Sebastian Thiel <sthiel@thoughtworks.com>"]
edition = "2018"
publish = false
[[bin]]
name = "preproc"
path = "src/main.rs"
doctest = false
test = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]