From 5fb752bdd51b2d40ffbddf3c86e5869b3e816e08 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Sat, 20 May 2023 20:14:38 -0700 Subject: [PATCH] std: make `fortanix-sgx-abi` a public depedenceny It's exported publicly, so it should not be linted. --- library/std/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 4765bb5d25a93..72d910bf95746 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -42,7 +42,7 @@ rand_xorshift = "0.3.0" dlmalloc = { version = "0.2.3", features = ['rustc-dep-of-std'] } [target.x86_64-fortanix-unknown-sgx.dependencies] -fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'] } +fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'], public = true } [target.'cfg(target_os = "hermit")'.dependencies] hermit-abi = { version = "0.3.0", features = ['rustc-dep-of-std'] }