Use redox_simple_endian fork

This commit is contained in:
Jeremy Soller
2022-03-11 09:09:11 -07:00
parent 2e46c28097
commit f9f4f7c5f0
7 changed files with 14 additions and 14 deletions
Generated
+7 -6
View File
@@ -282,6 +282,12 @@ dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "redox_simple_endian"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4e4404b4e54e59e7bb5f5236b61d8e822c2a77b2e955be8072002ff7ff8d69c"
[[package]]
name = "redox_syscall"
version = "0.2.10"
@@ -312,9 +318,9 @@ dependencies = [
"getrandom",
"libc",
"log 0.4.14",
"redox_simple_endian",
"redox_syscall",
"seahash",
"simple_endian",
"termion",
"time",
"uuid",
@@ -343,11 +349,6 @@ version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
[[package]]
name = "simple_endian"
version = "0.2.1"
source = "git+https://github.com/michalfita/simple-endian-rs.git?rev=7210f40881d16f7f2e3d8d40f6381fa222843caa#7210f40881d16f7f2e3d8d40f6381fa222843caa"
[[package]]
name = "subtle"
version = "2.4.1"
+2 -3
View File
@@ -43,10 +43,9 @@ seahash = { version = "4.1.0", default-features = false }
termion = { version = "1.5.6", optional = true }
uuid = { version = "0.5", default-features = false }
[dependencies.simple_endian]
# https://github.com/rexlunae/simple-endian-rs/pull/5
git = "https://github.com/michalfita/simple-endian-rs.git"
rev = "7210f40881d16f7f2e3d8d40f6381fa222843caa"
[dependencies.redox_simple_endian]
version = "0.2.1"
default-features = false
features = [
"bitwise", "comparisons", "format", "math_ops", "neg_ops", "shift_ops",
+1 -1
View File
@@ -1,6 +1,6 @@
use alloc::vec::Vec;
use core::{fmt, mem, ops, slice};
use simple_endian::*;
use redox_simple_endian::*;
use crate::BlockPtr;
+1 -1
View File
@@ -1,5 +1,5 @@
use core::{fmt, marker::PhantomData, mem, ops, slice};
use simple_endian::*;
use redox_simple_endian::*;
use crate::BLOCK_SIZE;
+1 -1
View File
@@ -1,6 +1,6 @@
use core::ops::{Deref, DerefMut};
use core::{fmt, mem, slice};
use simple_endian::*;
use redox_simple_endian::*;
use aes::{Aes128, BlockDecrypt, BlockEncrypt};
use uuid::Uuid;
+1 -1
View File
@@ -1,5 +1,5 @@
use core::{fmt, mem, ops, slice};
use simple_endian::*;
use redox_simple_endian::*;
use crate::{BlockList, BlockPtr, BlockRaw};
+1 -1
View File
@@ -1,5 +1,5 @@
use core::{marker::PhantomData, mem, ops, slice};
use simple_endian::*;
use redox_simple_endian::*;
use crate::{BlockPtr, BlockRaw};