about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-05-20 20:14:38 -0700
committerMichael Howell <michael@notriddle.com>2023-05-25 08:15:05 -0700
commit5fb752bdd51b2d40ffbddf3c86e5869b3e816e08 (patch)
treeddf3534a7fac3a33529eb6da66c9ab03478dda1d
parent8c21920cc721de6a75c959168240c3cba4177df5 (diff)
downloadrust-5fb752bdd51b2d40ffbddf3c86e5869b3e816e08.tar.gz
rust-5fb752bdd51b2d40ffbddf3c86e5869b3e816e08.zip
std: make `fortanix-sgx-abi` a public depedenceny
It's exported publicly, so it should not be linted.
-rw-r--r--library/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
index 4765bb5d25a..72d910bf957 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'] }