alchemy/Cargo.toml
Jason Travis Smith 022f6ae87a Adds the ability to convert a value to the platform or network order.
This handles doing the configure check to see what the platform
endianess is for converting byte orders.
2016-11-03 15:04:29 -04:00

23 lines
558 B
TOML

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