9374: Update crates r=kjeremy a=kjeremy

Drops byteorder

Co-authored-by: kjeremy <kjeremy@gmail.com>
This commit is contained in:
bors[bot] 2021-06-22 17:24:57 +00:00 committed by GitHub
commit 16d83ccbe2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 37 deletions

View file

@ -15,8 +15,8 @@ serde_json = { version = "1.0", features = ["unbounded_depth"] }
log = "0.4.8"
crossbeam-channel = "0.5.0"
jod-thread = "0.1.1"
memmap2 = "0.2.0"
object = { version = "0.24", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
memmap2 = "0.3.0"
object = { version = "0.25.3", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
snap = "1.0"
tt = { path = "../tt", version = "0.0.0" }

View file

@ -10,9 +10,9 @@ edition = "2018"
doctest = false
[dependencies]
object = { version = "0.24", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
object = { version = "0.25.3", default-features = false, features = ["std", "read_core", "elf", "macho", "pe"] }
libloading = "0.7.0"
memmap2 = "0.2.0"
memmap2 = "0.3.0"
tt = { path = "../tt", version = "0.0.0" }
mbe = { path = "../mbe", version = "0.0.0" }