remove unused imports: Deserialize
, Serialize
compiler warning for nu-protocol/src/example.rs (#8514)
when running the tests inside nu-protocol we were getting a compiler warning... this PR removes the compiler warning from nu-protocol. by adding ```rust #[allow(unused_imports)] ```
This commit is contained in:
parent
f9cf1d943c
commit
64f50a179e
|
@ -1,4 +1,5 @@
|
||||||
use crate::Value;
|
use crate::Value;
|
||||||
|
#[allow(unused_imports)]
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user