Skip to content

Commit 2327ecc

Browse files
committed
no public deps
1 parent cea2b39 commit 2327ecc

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

library/std/Cargo.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
cargo-features = ["public-dependency"]
2-
31
[package]
42
name = "std"
53
version = "0.0.0"
@@ -12,12 +10,12 @@ edition = "2021"
1210
crate-type = ["dylib", "rlib"]
1311

1412
[dependencies]
15-
alloc = { path = "../alloc", public = true }
13+
alloc = { path = "../alloc" }
1614
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1715
panic_unwind = { path = "../panic_unwind", optional = true }
1816
panic_abort = { path = "../panic_abort" }
19-
core = { path = "../core", public = true }
20-
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
17+
core = { path = "../core" }
18+
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'] }
2119
compiler_builtins = { version = "0.1.95" }
2220
profiler_builtins = { path = "../profiler_builtins", optional = true }
2321
unwind = { path = "../unwind" }
@@ -28,7 +26,7 @@ std_detect = { path = "../stdarch/crates/std_detect", default-features = false,
2826

2927
addr2line = { version = "0.21.0", optional = true, default-features = false }
3028
rustc-demangle = { version = "0.1.21", features = ['rustc-dep-of-std'] }
31-
miniz_oxide = { version = "0.7.0", optional = true, default-features = false, public = false }
29+
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
3230
[dependencies.object]
3331
version = "0.32.0"
3432
optional = true
@@ -43,7 +41,7 @@ rand_xorshift = "0.3.0"
4341
dlmalloc = { version = "0.2.3", features = ['rustc-dep-of-std'] }
4442

4543
[target.x86_64-fortanix-unknown-sgx.dependencies]
46-
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'], public = true }
44+
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'] }
4745

4846
[target.'cfg(target_os = "hermit")'.dependencies]
4947
hermit-abi = { version = "0.3.0", features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)