Auto merge of #1361 - gnzlbg:std_feature, r=gnzlbg
Deprecate `use_std` cargo feature: use `std` instead . Related to #657 .
No related branches found
No related tags found
... | @@ -23,11 +23,13 @@ appveyor = { repository = "rust-lang/libc", project_name = "rust-lang-libs/libc" | ... | @@ -23,11 +23,13 @@ appveyor = { repository = "rust-lang/libc", project_name = "rust-lang-libs/libc" |
rustc-std-workspace-core = { version = "1.0.0", optional = true } | rustc-std-workspace-core = { version = "1.0.0", optional = true } | ||
[features] | [features] | ||
default = ["use_std"] | default = ["std"] | ||
use_std = [] | std = [] | ||
align = [] | align = [] | ||
rustc-dep-of-std = ['align', 'rustc-std-workspace-core'] | rustc-dep-of-std = ['align', 'rustc-std-workspace-core'] | ||
extra_traits = [] | extra_traits = [] | ||
# use_std is deprecated, use `std` instead | |||
use_std = [ 'std' ] | |||
[workspace] | [workspace] | ||
members = ["libc-test"] | members = ["libc-test"] |
Please register or sign in to comment