From 44f23e40fd83f4da6cd91cacca506c8e37766cfc Mon Sep 17 00:00:00 2001 From: Jason Travis Smith Date: Thu, 6 Apr 2017 18:37:23 -0400 Subject: [PATCH] Adjusting repository locations. --- Cargo.toml | 7 ++++--- src/endian.rs | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1f243cf..a212c66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "1.0.0" authors = ["Jason Travis Smith "] description = "Handles converting values to and from a binary format." license = "" -repository = "https://gitlab.com/CyberMages/alchemy.git" +repository = "https://gitlab.com/CyberMages/Core/alchemy.git" documentation = "" keywords = ["converter", "binary"] @@ -13,12 +13,13 @@ keywords = ["converter", "binary"] default = [] convert_sigils = ["sigils"] + [dependencies.scribe] -git = "https://gitlab.com/CyberMages/scribe.git" +git = "ssh://git@gitlab.com/CyberMages/Core/scribe.git" [dependencies.sigils] +git = "ssh://git@gitlab.com/CyberMages/Core/sigils.git" optional = true -git = "https://gitlab.com/CyberMages/sigils.git" [dev-dependencies] rand = { version = "*" } diff --git a/src/endian.rs b/src/endian.rs index 6f78ae2..1dae0d3 100644 --- a/src/endian.rs +++ b/src/endian.rs @@ -44,7 +44,7 @@ pub enum LittleEndian /// Create an enumeration of the different /// available endianesses. -#[derive(Clone, Copy)] +#[derive(Copy, Clone, Eq, Ord, PartialEq, PartialOrd)] pub enum Endianess { /// Referes to BigEndian.