lighthouse/consensus/ssz/Cargo.toml
realbigsean 423dea169c update smallvec (#2152)
## 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>
2021-01-11 23:32:11 +00:00

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"]