cargo: Clean up serde dependencies

There is no need to include serde_derive separately,
as it can be specified as serde feature instead.

Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
Maksym Pavlenko 2022-05-17 14:04:38 -07:00 committed by Sebastien Boeuf
parent 7f29cef5d2
commit 3a0429c998
29 changed files with 31 additions and 48 deletions

12
Cargo.lock generated
View File

@ -50,7 +50,6 @@ dependencies = [
"linux-loader",
"log",
"serde",
"serde_derive",
"thiserror",
"versionize",
"versionize_derive",
@ -266,7 +265,6 @@ version = "0.1.0"
dependencies = [
"libc",
"serde",
"serde_derive",
"serde_json",
]
@ -353,7 +351,6 @@ dependencies = [
"mshv-bindings",
"mshv-ioctls",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"vm-memory",
@ -656,7 +653,6 @@ dependencies = [
"libc",
"log",
"serde",
"serde_derive",
"thiserror",
"versionize",
"versionize_derive",
@ -677,7 +673,6 @@ dependencies = [
"clap",
"dirs",
"serde",
"serde_derive",
"serde_json",
"test_infra",
"thiserror",
@ -905,6 +900,9 @@ name = "serde"
version = "1.0.137"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
@ -1260,7 +1258,6 @@ dependencies = [
"rate_limiter",
"seccompiler",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"versionize",
@ -1303,7 +1300,6 @@ dependencies = [
"anyhow",
"hypervisor",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"vfio-ioctls",
@ -1333,7 +1329,6 @@ version = "0.1.0"
dependencies = [
"anyhow",
"serde",
"serde_derive",
"serde_json",
"thiserror",
"versionize",
@ -1379,7 +1374,6 @@ dependencies = [
"qcow",
"seccompiler",
"serde",
"serde_derive",
"serde_json",
"signal-hook",
"thiserror",

View File

@ -16,8 +16,7 @@ hypervisor = { path = "../hypervisor" }
libc = "0.2.125"
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.17"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
thiserror = "1.0.31"
versionize = "0.1.6"
versionize_derive = "0.1.4"

View File

@ -9,11 +9,10 @@
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
#[cfg(target_arch = "x86_64")]
use crate::x86_64::SgxEpcSection;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
use std::fmt;
use std::result;

View File

@ -6,6 +6,5 @@ edition = "2021"
[dependencies]
libc = "0.2.125"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"

View File

@ -3,9 +3,7 @@
// SPDX-License-Identifier: Apache-2.0
//
#[macro_use]
extern crate serde_derive;
use serde::Serialize;
use std::borrow::Cow;
use std::collections::HashMap;
use std::fs::File;

View File

@ -20,8 +20,7 @@ kvm-ioctls = { version = "0.11.0", optional = true }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx", features = ["with-serde", "fam-wrappers"], optional = true }
mshv-bindings = { git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true }
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true}
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }

View File

@ -23,7 +23,7 @@ use kvm_bindings::{
pub use kvm_bindings::{
kvm_one_reg as Register, kvm_regs as StandardRegisters, kvm_vcpu_init as VcpuInit, RegList,
};
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
pub use {kvm_ioctls::Cap, kvm_ioctls::Kvm};
// This macro gets the offset of a structure (i.e `str`) member (i.e `field`) without having

View File

@ -21,7 +21,7 @@ use crate::vm::{self, InterruptSourceConfig, VmOps};
#[cfg(target_arch = "aarch64")]
use crate::{arm64_core_reg_id, offset__of};
use kvm_ioctls::{NoDatamatch, VcpuFd, VmFd};
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[cfg(target_arch = "aarch64")]
use std::convert::TryInto;

View File

@ -10,7 +10,7 @@
use crate::arch::x86::{msr_index, SegmentRegisterOps, MTRR_ENABLE, MTRR_MEM_TYPE_WB};
use crate::kvm::{Cap, Kvm, KvmError, KvmResult};
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
///
/// Export generically-named wrappers of kvm-bindings for Unix-based platforms

View File

@ -15,7 +15,7 @@ use crate::vm::{self, InterruptSourceConfig, VmOps};
pub use mshv_bindings::*;
pub use mshv_ioctls::IoEventAddress;
use mshv_ioctls::{set_registers_64, Mshv, NoDatamatch, VcpuFd, VmFd};
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
use vm::DataMatch;

View File

@ -8,7 +8,7 @@
//
//
use crate::arch::x86::{msr_index, SegmentRegisterOps, MTRR_ENABLE, MTRR_MEM_TYPE_WB};
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::fmt;
///

View File

@ -18,8 +18,7 @@ vfio_user = { path = "../vfio_user" }
vmm-sys-util = "0.9.0"
libc = "0.2.125"
log = "0.4.17"
serde = "1.0.137"
serde_derive = "1.0.137"
serde = { version="1.0.137", features=["derive"] }
thiserror = "1.0.31"
versionize = "0.1.6"
versionize_derive = "0.1.4"

View File

@ -8,8 +8,7 @@ build = "build.rs"
[dependencies]
clap = { version = "3.1.18", features = ["wrap_help","cargo"] }
dirs = "4.0.0"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
test_infra = { path = "../test_infra" }
thiserror = "1.0.31"

View File

@ -12,7 +12,7 @@ mod performance_tests;
use clap::{Arg, Command as ClapCommand};
use performance_tests::*;
use serde_derive::{Deserialize, Serialize};
use serde::{Deserialize, Serialize};
use std::{env, fmt, process::Command, sync::mpsc::channel, thread, time::Duration};
use thiserror::Error;

View File

@ -23,8 +23,7 @@ net_util = { path = "../net_util" }
pci = { path = "../pci" }
rate_limiter = { path = "../rate_limiter" }
seccompiler = "0.2.0"
serde = "1.0.137"
serde_derive = "1.0.137"
serde = { version="1.0.137", features=["derive"] }
serde_json = "1.0.81"
thiserror = "1.0.31"
versionize = "0.1.6"

View File

@ -14,9 +14,8 @@
extern crate event_monitor;
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
use serde::{Deserialize, Serialize};
use std::convert::TryInto;
use std::io;

View File

@ -13,8 +13,7 @@ mshv = ["vfio-ioctls/mshv"]
anyhow = "1.0.57"
hypervisor = { path = "../hypervisor" }
thiserror = "1.0.31"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false }
vm-memory = { version = "0.8.0", features = ["backend-mmap"] }

View File

@ -3,8 +3,7 @@
// SPDX-License-Identifier: Apache-2.0
//
#[macro_use]
extern crate serde_derive;
use serde::{Deserialize, Serialize};
mod bus;
pub mod dma_mapping;

View File

@ -7,8 +7,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.57"
thiserror = "1.0.31"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
versionize = "0.1.6"
versionize_derive = "0.1.4"

View File

@ -3,9 +3,6 @@
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
//
#[macro_use]
extern crate serde_derive;
use crate::protocol::MemoryRangeTable;
use anyhow::anyhow;
use serde::{Deserialize, Serialize};

View File

@ -4,6 +4,7 @@
//
use crate::{MigratableError, VersionMapped};
use serde::{Deserialize, Serialize};
use std::io::{Read, Write};
use versionize::{VersionMap, Versionize, VersionizeResult};
use versionize_derive::Versionize;

View File

@ -38,8 +38,7 @@ option_parser = { path = "../option_parser" }
pci = { path = "../pci" }
qcow = { path = "../qcow" }
seccompiler = "0.2.0"
serde = { version = "1.0.137", features = ["rc"] }
serde_derive = "1.0.137"
serde = { version = "1.0.137", features = ["rc", "derive"] }
serde_json = "1.0.81"
signal-hook = "0.3.14"
thiserror = "1.0.31"

View File

@ -41,6 +41,7 @@ use crate::config::{
use crate::device_tree::DeviceTree;
use crate::vm::{Error as VmError, VmState};
use micro_http::Body;
use serde::{Deserialize, Serialize};
use std::io;
use std::sync::mpsc::{channel, RecvError, SendError, Sender};
use std::sync::{Arc, Mutex};

View File

@ -8,6 +8,7 @@ use net_util::MacAddr;
use option_parser::{
ByteSized, IntegerList, OptionParser, OptionParserError, StringList, Toggle, Tuple,
};
use serde::{Deserialize, Serialize};
use std::collections::{BTreeSet, HashMap};
use std::convert::From;
use std::fmt;

View File

@ -65,6 +65,7 @@ use pci::{
VfioUserPciDevice, VfioUserPciDeviceError,
};
use seccompiler::SeccompAction;
use serde::{Deserialize, Serialize};
use std::collections::{BTreeSet, HashMap};
use std::convert::TryInto;
use std::fs::{read_link, File, OpenOptions};

View File

@ -4,6 +4,7 @@
use crate::device_manager::PciDeviceHandle;
use pci::PciBdf;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use vm_device::Resource;

View File

@ -9,8 +9,6 @@ extern crate event_monitor;
extern crate lazy_static;
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
use crate::api::{
ApiError, ApiRequest, ApiResponse, ApiResponsePayload, VmInfo, VmReceiveMigrationData,
@ -30,7 +28,8 @@ use libc::EFD_NONBLOCK;
use memory_manager::MemoryManagerSnapshotData;
use pci::PciBdf;
use seccompiler::{apply_filter, SeccompAction};
use serde::ser::{Serialize, SerializeStruct, Serializer};
use serde::ser::{SerializeStruct, Serializer};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fs::File;
use std::io;

View File

@ -17,6 +17,7 @@ use arch::{layout, RegionType};
use devices::ioapic;
#[cfg(target_arch = "x86_64")]
use libc::{MAP_NORESERVE, MAP_POPULATE, MAP_SHARED, PROT_READ, PROT_WRITE};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::convert::TryInto;
use std::ffi;

View File

@ -57,6 +57,7 @@ use linux_loader::loader::elf::PvhBootCapability::PvhEntryPresent;
use linux_loader::loader::pe::Error::InvalidImageMagicNumber;
use linux_loader::loader::KernelLoader;
use seccompiler::{apply_filter, SeccompAction};
use serde::{Deserialize, Serialize};
use signal_hook::{
consts::{SIGINT, SIGTERM, SIGWINCH},
iterator::backend::Handle,