Update cargo-check-external-types metadata and .deny.toml

This commit is contained in:
Taiki Endo
2025-09-15 04:55:59 +09:00
parent 72b3cdb0ed
commit 35e7d6bd77
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,8 @@ build.include-archives = true
build.allow-build-scripts = [ build.allow-build-scripts = [
{ name = "proc-macro2" }, # via serde_derive { name = "proc-macro2" }, # via serde_derive
{ name = "semver" }, { name = "semver" },
{ name = "serde" }, { name = "serde_core" },
{ name = "serde" }, # https://github.com/serde-rs/serde/issues/2972
] ]
build.bypass = [ build.bypass = [
] ]

View File

@@ -18,7 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"]
# The following are external types that are allowed to be exposed in our public API. # The following are external types that are allowed to be exposed in our public API.
allowed_external_types = [ allowed_external_types = [
"semver::*", "semver::*",
"serde::*", "serde_core::*",
] ]
[lib] [lib]