423dea169c
## Issue Addressed `cargo audit` is failing because of a potential for an overflow in the version of `smallvec` we're using ## Proposed Changes Update to the latest version of `smallvec`, which has the fix Co-authored-by: realbigsean <seananderson33@gmail.com>
21 lines
374 B
TOML
21 lines
374 B
TOML
[package]
|
|
name = "eth2_ssz"
|
|
version = "0.1.2"
|
|
authors = ["Paul Hauner <paul@sigmaprime.io>"]
|
|
edition = "2018"
|
|
description = "SimpleSerialize (SSZ) as used in Ethereum 2.0"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "ssz"
|
|
|
|
[dev-dependencies]
|
|
eth2_ssz_derive = "0.1.0"
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.9.2"
|
|
smallvec = "1.6.1"
|
|
|
|
[features]
|
|
arbitrary = ["ethereum-types/arbitrary"]
|