mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
31 lines
782 B
TOML
31 lines
782 B
TOML
[package]
|
|
name = "firo"
|
|
version = "0.1.0"
|
|
description = "A modern Firo wallet library"
|
|
license = "MIT"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
thiserror = "1"
|
|
|
|
rand_core = "0.6"
|
|
rand_chacha = { version = "0.3", optional = true }
|
|
|
|
sha2 = "0.10"
|
|
|
|
ff = "0.12"
|
|
group = "0.12"
|
|
k256 = { version = "0.11", features = ["arithmetic"] }
|
|
|
|
blake2 = { version = "0.10", optional = true }
|
|
transcript = { path = "../../crypto/transcript", package = "flexible-transcript", features = ["recommended"], optional = true }
|
|
frost = { path = "../../crypto/frost", package = "modular-frost", features = ["secp256k1"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
|
|
[features]
|
|
multisig = ["blake2", "transcript", "frost", "rand_chacha"]
|