-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
22 lines (17 loc) · 953 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[workspace]
members = [
"crates/core",
"crates/cggmp",
]
# Makes all `multi-party-ecdsa` dependencies resolve to our fork so that we get consistent types and API changes.
[patch."https://github.com/webb-tools/multi-party-ecdsa"]
multi-party-ecdsa = { git = "https://github.com/davidsemakula/multi-party-ecdsa", branch = "wamu" }
# Makes all `fs-dkr` dependencies resolve to our fork so that we get consistent types and API changes.
[patch."https://github.com/webb-tools/fs-dkr"]
fs-dkr = { git = "https://github.com/davidsemakula/fs-dkr", branch = "wamu" }
# Makes all `round-based` dependencies resolve to our fork so that we get this patch:
# https://github.com/ZenGo-X/round-based-protocol/pull/10
[patch.crates-io]
round-based = { git = "https://github.com/davidsemakula/round-based-protocol" }
[patch."https://github.com/webb-tools/round-based-protocol"]
round-based = { git = "https://github.com/davidsemakula/round-based-protocol" }