alchemy/Cargo.toml
Jason Travis Smith 4f62caf654 Removed the Cargo.lock file from the repo and made Sigils a feature.
The Sigils library will now only be compiled in and able to convert
math structures if the convert_sigils feature is selected.

use_std would have also been set as a feature, but the library heavily
uses std::collections::vec::Vec. Until a non-std version of a collection
has been written, then this needs to be used.
2016-08-24 13:23:56 -04:00

23 lines
556 B
TOML

[package]
name = "alchemy"
version = "0.1.0"
authors = ["Jason Travis Smith <Jason@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 = "*" }