2019-01-06 09:37:22 +00:00
|
|
|
[package]
|
|
|
|
name = "ff"
|
2020-03-04 00:44:28 +00:00
|
|
|
version = "0.5.2"
|
2019-01-06 09:37:22 +00:00
|
|
|
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
|
|
|
|
description = "Library for building and interfacing with finite fields"
|
2019-08-02 13:57:34 +00:00
|
|
|
readme = "README.md"
|
2019-01-06 09:37:22 +00:00
|
|
|
documentation = "https://docs.rs/ff/"
|
|
|
|
homepage = "https://github.com/ebfull/ff"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
repository = "https://github.com/ebfull/ff"
|
2019-08-21 00:31:20 +00:00
|
|
|
edition = "2018"
|
2019-01-06 09:37:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
byteorder = "1"
|
2020-03-04 00:44:28 +00:00
|
|
|
ff_derive = { version = "^0.4.1", path = "ff_derive", optional = true }
|
2019-07-14 11:19:01 +00:00
|
|
|
rand_core = "0.5"
|
2019-01-06 09:37:22 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
derive = ["ff_derive"]
|
2019-10-08 03:00:47 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|