Adjusting repository locations.

This commit is contained in:
Myrddin Dundragon 2017-04-06 18:37:23 -04:00
parent 03e9484e52
commit 44f23e40fd
2 changed files with 5 additions and 4 deletions

View File

@ -4,7 +4,7 @@ version = "1.0.0"
authors = ["Jason Travis Smith <Myrddin@CyberMagesLLC.com>"] authors = ["Jason Travis Smith <Myrddin@CyberMagesLLC.com>"]
description = "Handles converting values to and from a binary format." description = "Handles converting values to and from a binary format."
license = "" license = ""
repository = "https://gitlab.com/CyberMages/alchemy.git" repository = "https://gitlab.com/CyberMages/Core/alchemy.git"
documentation = "" documentation = ""
keywords = ["converter", "binary"] keywords = ["converter", "binary"]
@ -13,12 +13,13 @@ keywords = ["converter", "binary"]
default = [] default = []
convert_sigils = ["sigils"] convert_sigils = ["sigils"]
[dependencies.scribe] [dependencies.scribe]
git = "https://gitlab.com/CyberMages/scribe.git" git = "ssh://git@gitlab.com/CyberMages/Core/scribe.git"
[dependencies.sigils] [dependencies.sigils]
git = "ssh://git@gitlab.com/CyberMages/Core/sigils.git"
optional = true optional = true
git = "https://gitlab.com/CyberMages/sigils.git"
[dev-dependencies] [dev-dependencies]
rand = { version = "*" } rand = { version = "*" }

View File

@ -44,7 +44,7 @@ pub enum LittleEndian
/// Create an enumeration of the different /// Create an enumeration of the different
/// available endianesses. /// available endianesses.
#[derive(Clone, Copy)] #[derive(Copy, Clone, Eq, Ord, PartialEq, PartialOrd)]
pub enum Endianess pub enum Endianess
{ {
/// Referes to BigEndian. /// Referes to BigEndian.