summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2019-08-19 14:08:07 -0700
committerCommit Bot <commit-bot@chromium.org>2019-08-26 23:41:54 +0000
commita445ae1fbe02a25e0666382af5e44a12671ca06e (patch)
tree99c0261ab2b690b8131158cdf0c362aef9384b46
parent034f7a3a1c43cd63a4106c076e0053abe28ff992 (diff)
downloadcrosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar.gz
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar.bz2
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar.lz
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar.xz
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.tar.zst
crosvm-a445ae1fbe02a25e0666382af5e44a12671ca06e.zip
Remove remaining byteorder crate references
Remove the last (unused) reference to byteorder in vm_control/Cargo.toml
and remove it from the list of external crates in README.md.

BUG=None
TEST=./build_test

Change-Id: Ie70c0bc2f96c19b34ef1596885245eca7bc202f4
Signed-off-by: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1761156
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Zach Reizner <zachr@chromium.org>
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml1
-rw-r--r--README.md1
-rw-r--r--vm_control/Cargo.toml1
4 files changed, 0 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ebba197..98625dc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -57,11 +57,6 @@ dependencies = [
 ]
 
 [[package]]
-name = "byteorder"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
 name = "cc"
 version = "1.0.25"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -87,7 +82,6 @@ dependencies = [
  "assertions 0.1.0",
  "audio_streams 0.1.0",
  "bit_field 0.1.0",
- "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  "crosvm_plugin 0.17.0",
  "data_model 0.1.0",
  "devices 0.1.0",
@@ -542,7 +536,6 @@ dependencies = [
 name = "vm_control"
 version = "0.1.0"
 dependencies = [
- "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  "data_model 0.1.0",
  "kvm 0.1.0",
  "libc 0.2.44 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -582,7 +575,6 @@ dependencies = [
 ]
 
 [metadata]
-"checksum byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff81738b726f5d099632ceaffe7fb65b90212e8dce59d518729e7e8634032d3d"
 "checksum cc 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = "f159dfd43363c4d08055a07703eb7a3406b0dac4d0584d96965a3262db3c9d16"
 "checksum cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4e7bb64a8ebb0d856483e1e682ea3422f883c5f5615a90d51a2c82fe87fdd3"
 "checksum getopts 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0a7292d30132fb5424b354f5dc02512a86e4c516fe544bb7a25e7f266951b797"
diff --git a/Cargo.toml b/Cargo.toml
index d899031..75d3b13 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -42,7 +42,6 @@ arch = { path = "arch" }
 assertions = { path = "assertions" }
 audio_streams = "*"
 bit_field = { path = "bit_field" }
-byteorder = "=1.1.0"
 crosvm_plugin = { path = "crosvm_plugin", optional = true }
 data_model = "*"
 devices = { path = "devices" }
diff --git a/README.md b/README.md
index d287af8..d55c41b 100644
--- a/README.md
+++ b/README.md
@@ -157,7 +157,6 @@ binary size by including dozens of transitive dependencies. All these
 dependencies also must be reviewed to ensure their suitability to the crosvm
 project. Currently allowed crates are:
 
-* `byteorder` - A very small library used for endian swaps.
 * `cc` - Build time dependency needed to build C source code used in crosvm.
 * `libc` - Required to use the standard library, this crate is a simple wrapper around `libc`'s symbols.
 
diff --git a/vm_control/Cargo.toml b/vm_control/Cargo.toml
index ba70fe2..eb8a078 100644
--- a/vm_control/Cargo.toml
+++ b/vm_control/Cargo.toml
@@ -8,7 +8,6 @@ edition = "2018"
 sandboxed-libusb = []
 
 [dependencies]
-byteorder = "*"
 data_model = { path = "../data_model" }
 kvm = { path = "../kvm" }
 libc = "*"