33 lines
759 B
TOML
33 lines
759 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"]
|
|
edition = "2018"
|
|
|
|
|
|
[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 = "*" }
|