Add ssz_derive crate.

It appears to be fully functional at this stage.
This commit is contained in:
Paul Hauner
2019-02-19 13:53:05 +11:00
parent 98c33a7d06
commit fdfaf18dbd
4 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
[package]
name = "ssz_derive"
version = "0.1.0"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = "2018"
description = "Procedural derive macros for SSZ encoding and decoding."
[lib]
proc-macro = true
[dependencies]
syn = "0.15"
quote = "0.6"
ssz = { path = "../ssz" }