From f2e25da95cd7c36b460dd33e253d182bbda7bebd Mon Sep 17 00:00:00 2001 From: Francesco Vigliaturo Date: Thu, 3 Oct 2024 09:51:59 +0200 Subject: [PATCH] fix CI error "unexpected `cfg` condition name: `doc_cfg`" --- sentry/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sentry/Cargo.toml b/sentry/Cargo.toml index 260af7ab..2ee7c828 100644 --- a/sentry/Cargo.toml +++ b/sentry/Cargo.toml @@ -101,3 +101,6 @@ tokio = { version = "1.0", features = ["macros"] } tower = { version = "0.4", features = ["util"] } tracing = { version = "0.1" } tracing-subscriber = { version = "0.3", features = ["fmt", "tracing-log"] } + +[lints.rust] +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } \ No newline at end of file