Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b495caa authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Import macro directly rather than using #[macro_use]." am: d30f8081

parents 528641b0 d30f8081
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -93,15 +93,13 @@
//! }
//! ```

#[macro_use]
mod proxy;

#[macro_use]
mod binder;
mod binder_async;
mod error;
mod native;
mod parcel;
mod proxy;
mod state;

use binder_ndk_sys as sys;
+1 −4
Original line number Diff line number Diff line
@@ -17,9 +17,6 @@
#![allow(missing_docs)]
#![no_main]

#[macro_use]
extern crate libfuzzer_sys;

mod read_utils;

use crate::read_utils::READ_FUNCS;
@@ -31,7 +28,7 @@ use binder::{
    StatusCode,
};
use binder_random_parcel_rs::create_random_parcel;
use libfuzzer_sys::arbitrary::Arbitrary;
use libfuzzer_sys::{arbitrary::Arbitrary, fuzz_target};

#[derive(Arbitrary, Debug)]
enum ReadOperation {
+2 −2
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@

#![allow(missing_docs)]
#![no_main]
#[macro_use]
extern crate libfuzzer_sys;

use libfuzzer_sys::fuzz_target;

use binder::{self, BinderFeatures, Interface};
use binder_random_parcel_rs::fuzz_service;