[package]
edition = "2024"
rust-version = "1.85"
name = "mkt-google"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Google Ads provider for the mkt marketing CLI"
homepage = "https://mktcli.com"
readme = "README.md"
keywords = [
"marketing",
"ads",
"cli",
"meta",
"google-ads",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/diorrego/mkt-cli"
[lib]
name = "mkt_google"
path = "src/lib.rs"
[[test]]
name = "campaign_integration"
path = "tests/campaign_integration.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.mkt-cli-core]
version = "0.3.0"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"multipart",
"rustls-tls",
"gzip",
"brotli",
]
default-features = false
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"signal",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
expect_used = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"