datadog-api 0.1.0

Rust client library for the Datadog API with type-safe access to monitors, dashboards, metrics, logs, and more
Documentation
[[bench]]
harness = false
name = "serialization"
path = "benches/serialization.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.keyring]
default-features = false
features = ["apple-native", "windows-native", "sync-secret-service"]
optional = true
version = "3"

[dependencies.regex]
version = "1.12"

[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls", "gzip"]
version = "0.12"

[dependencies.reqwest-middleware]
version = "0.3"

[dependencies.reqwest-retry]
version = "0.6"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "fs"]
version = "1.40"

[dependencies.tracing]
version = "0.1"

[dependencies.zeroize]
features = ["derive"]
version = "1.8"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.serial_test]
version = "3.1"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.wiremock]
version = "0.6"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "custom_config"
path = "examples/custom_config.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

[[example]]
name = "standalone_api"
path = "examples/standalone_api.rs"

[features]
default = ["keyring"]
keyring = ["dep:keyring"]

[lib]
name = "datadog_api"
path = "src/lib.rs"

[package]
authors = ["Jimmy Stridh"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "web-programming::http-client"]
description = "Rust client library for the Datadog API with type-safe access to monitors, dashboards, metrics, logs, and more"
edition = "2021"
homepage = "https://github.com/jimmystridh/datadog-mcp"
keywords = ["datadog", "monitoring", "observability", "metrics", "api"]
license = "MIT"
name = "datadog-api"
readme = "README.md"
repository = "https://github.com/jimmystridh/datadog-mcp"
version = "0.1.0"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "mock_api_tests"
path = "tests/mock_api_tests.rs"

[[test]]
name = "proptest_serialization"
path = "tests/proptest_serialization.rs"