-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 984 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "frost-adaptor-signature"
version = "2.1.0-rc.3"
authors = ["SIDE Protocol <luis@side.one>"]
edition = "2021"
description = "A Schnorr adaptor signature scheme over the secp256k1 curve that supports FROST and Taproot."
readme = "README.md"
repository = "https://github.com/sideprotocol/frost-adaptor-signature.git"
license = "MIT OR Apache-2.0"
[dependencies]
frost-core = { version="2.1.0", features = ["internals"] }
frost-secp256k1-tr = {version="2.1.0"}
k256 = { version = "0.13.4", features = ["arithmetic", "expose-field", "hash2curve", "serde"] }
serde = { version = "1.0.218", features = ["derive"], optional = true }
rand = "0.8"
rand_core = "0.6"
sha2 = "0.10.2"
secp256k1 = "0.30.0"
[features]
cheater-detection = ["frost-core/cheater-detection", "frost-secp256k1-tr/cheater-detection" ]
serialization = ["frost-core/serialization", "frost-secp256k1-tr/serialization"]
serde = ["dep:serde", "k256/serde", "frost-core/serde", "frost-secp256k1-tr/serde"]