mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
6101f81d0a
Combines the existing frost-rs, dalek-ff-group, and monero-rs repos into a monorepo. Makes tweaks necessary as needed. Replaces RedDSA (which was going to be stubbed out into a new folder for now) with an offset system that voids its need and allows stealth addresses with CLSAG.
23 lines
367 B
TOML
23 lines
367 B
TOML
[package]
|
|
name = "frost"
|
|
version = "0.1.0"
|
|
description = "Implementation of FROST over ff/group"
|
|
license = "MIT"
|
|
authors = ["kayabaNerve (Luke Parker) <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
digest = "0.9"
|
|
blake2 = "0.9"
|
|
|
|
rand_core = "0.6"
|
|
|
|
ff = "0.10"
|
|
group = "0.10"
|
|
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
rand = "0.8"
|
|
jubjub = "0.7"
|