2022-04-22 01:36:18 +00:00
|
|
|
[package]
|
|
|
|
name = "frost"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Implementation of FROST over ff/group"
|
|
|
|
license = "MIT"
|
2022-05-03 11:20:24 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-04-22 01:36:18 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-03 11:20:24 +00:00
|
|
|
thiserror = "1"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
|
|
|
rand_core = "0.6"
|
2022-06-03 05:25:46 +00:00
|
|
|
hex = "0.4"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-04-23 07:49:30 +00:00
|
|
|
ff = "0.11"
|
|
|
|
group = "0.11"
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-05-03 11:20:24 +00:00
|
|
|
transcript = { path = "../transcript" }
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-05-27 04:52:44 +00:00
|
|
|
multiexp = { path = "../multiexp", features = ["batch"] }
|
2022-05-03 11:42:09 +00:00
|
|
|
|
2022-04-22 01:36:18 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.8"
|
2022-04-23 07:49:30 +00:00
|
|
|
sha2 = "0.10"
|
2022-06-03 05:25:46 +00:00
|
|
|
p256 = { version = "0.10", features = ["arithmetic"] }
|