2017-06-25 23:09:43 -06:00
|
|
|
[package]
|
|
|
|
name = "ff_derive"
|
2018-07-02 08:34:26 -06:00
|
|
|
version = "0.3.0"
|
2017-06-25 23:09:43 -06:00
|
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
2017-06-25 23:12:40 -06:00
|
|
|
description = "Procedural macro library used to build custom prime field implementations"
|
2018-07-02 08:34:26 -06:00
|
|
|
documentation = "https://docs.rs/ff/"
|
2017-06-25 23:12:40 -06:00
|
|
|
homepage = "https://github.com/ebfull/ff"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/ebfull/ff"
|
2019-08-20 18:31:20 -06:00
|
|
|
edition = "2018"
|
2017-06-25 23:09:43 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2018-06-27 07:37:25 -04:00
|
|
|
num-bigint = "0.2"
|
|
|
|
num-traits = "0.2"
|
2017-06-26 23:22:41 -06:00
|
|
|
num-integer = "0.1"
|
2019-09-06 19:03:12 -04:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
|
|
|
syn = "1"
|