alchemy/Cargo.toml
Jason Smith ff3558ea37 The conversion of an Array of bytes to a value can now fail gracefully.
This was added so that parsers can detect problems converting
a value and fail in an expected way.
2018-01-05 19:20:02 -05:00

32 lines
742 B
TOML

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