solid-core 0.1.3

Core for the `solid` crate. Not intended to be used directly.
Documentation
[package]
name = "solid-core"
version = "0.1.3"
authors = ["Daniel Akhterov <akhterovd@gmail.com>"]
edition = "2018"
description = "Core for the `solid` crate. Not intended to be used directly."
license = "MIT OR Apache-2.0"
repository = "https://github.com/danielakhterov/solid"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
byteorder = "1.3.2"
sha3 = "0.8.2"
hex = "0.4.0"
anyhow = "1.0.26"
serde = { version = "1.0.104", features = [ "derive" ], optional = true }
thiserror = "1.0.10"
num-bigint = { version = "0.2.6", optional = true }
fixed = { version = "0.5.4", optional = true }

[features]
default = [ "serde" ]
derive = [ "serde" ]
nightly = []
bigint = [ "num-bigint" ]
# fixedmxn = [ "fixed" ]