librustzcash/ff/Cargo.toml

25 lines
593 B
TOML
Raw Normal View History

[package]
name = "ff"
2019-10-07 20:00:47 -07:00
version = "0.5.0"
authors = ["Sean Bowe <ewillbefull@gmail.com>"]
description = "Library for building and interfacing with finite fields"
readme = "README.md"
documentation = "https://docs.rs/ff/"
homepage = "https://github.com/ebfull/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/ebfull/ff"
2019-08-20 17:31:20 -07:00
edition = "2018"
[dependencies]
byteorder = "1"
2019-10-07 20:00:47 -07:00
ff_derive = { version = "0.4.0", path = "ff_derive", optional = true }
2019-07-14 04:19:01 -07:00
rand_core = "0.5"
2019-12-12 15:15:48 -08:00
subtle = "2.2.1"
[features]
default = []
derive = ["ff_derive"]
2019-10-07 20:00:47 -07:00
[badges]
maintenance = { status = "actively-developed" }