ark-serialize 0.4.2

A library for serializing types in the arkworks ecosystem
Documentation
[package]
name = "ark-serialize"
version = "0.4.2"
authors = [ "arkworks contributors" ]
description = "A library for serializing types in the arkworks ecosystem"
homepage = "https://arkworks.rs"
repository = "https://github.com/arkworks-rs/algebra"
documentation = "https://docs.rs/ark-serialize/"
keywords = ["cryptography", "serialization" ]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.63"

[dependencies]
ark-serialize-derive = { version = "0.4.2-alpha.1", path = "../serialize-derive", optional = true }
ark-std = { version = "0.4.0", default-features = false }
digest = { version = "0.10", default-features = false }
num-bigint = { version = "0.4", default-features = false }

[dev-dependencies]
sha2 = { version = "0.10", default-features = false}
sha3 = { version = "0.10", default-features = false}
blake2 = { version = "0.10", default-features = false}
ark-test-curves = { version = "0.4.2-alpha.1", path = "../test-curves", default-features = false, features = [ "bls12_381_curve"] }


[features]
default = []
std = [ "ark-std/std", ]
derive = [ "ark-serialize-derive" ]