Skip to content

Remove useless nightly features #3123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libafl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Welcome to `LibAFL`
#![cfg_attr(feature = "document-features", doc = document_features::document_features!())]
#![no_std]
// For `type_eq`
#![cfg_attr(nightly, feature(specialization))]
// #![cfg_attr(nightly, feature(specialization))]
// For `std::simd`
#![cfg_attr(nightly, feature(portable_simd))]
#![cfg_attr(
Expand Down
2 changes: 1 addition & 1 deletion libafl_bolts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#![cfg_attr(feature = "document-features", doc = document_features::document_features!())]
#![no_std]
// For `type_eq`
#![cfg_attr(nightly, feature(specialization))]
// #![cfg_attr(nightly, feature(specialization))]
// For `std::simd`
#![cfg_attr(nightly, feature(portable_simd))]
#![cfg_attr(not(test), warn(
Expand Down
2 changes: 1 addition & 1 deletion libafl_qemu/libafl_qemu_sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Have a look at `libafl_qemu` for higher-level abstractions.
__Warning__: The documentation is built by default for `x86_64` in `usermode`. To access the documentation of other architectures or systemmode, the documentation must be rebuilt with the right features.
*/

#![cfg_attr(nightly, feature(used_with_arg))]
// #![cfg_attr(nightly, feature(used_with_arg))]
#![allow(clippy::std_instead_of_core)]

use core::ffi::c_void;
Expand Down
2 changes: 1 addition & 1 deletion libafl_tinyinst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ libafl_bolts = { workspace = true, default-features = true, features = [
"std",
"libafl_derive",
] }
tinyinst = { git = "https://github.com/AFLplusplus/tinyinst-rs" }
tinyinst = { git = "https://github.com/AFLplusplus/tinyinst-rs", branch = "main" }
# tinyinst-rs = { path = "../../tinyinst-rs" }
log = { workspace = true }

Expand Down
Loading