2022-04-22 01:36:18 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-11-11 05:34:40 +00:00
|
|
|
"common/zalloc",
|
|
|
|
|
2022-05-03 11:20:24 +00:00
|
|
|
"crypto/transcript",
|
2022-06-30 07:16:51 +00:00
|
|
|
|
|
|
|
"crypto/dalek-ff-group",
|
2022-08-29 07:32:59 +00:00
|
|
|
"crypto/ed448",
|
2022-10-29 08:54:42 +00:00
|
|
|
"crypto/ciphersuite",
|
2022-08-29 07:32:59 +00:00
|
|
|
|
2022-05-03 11:42:09 +00:00
|
|
|
"crypto/multiexp",
|
2022-06-30 07:16:51 +00:00
|
|
|
|
2022-10-29 08:54:42 +00:00
|
|
|
"crypto/schnorr",
|
2022-06-30 09:42:29 +00:00
|
|
|
"crypto/dleq",
|
2022-10-29 08:54:42 +00:00
|
|
|
"crypto/dkg",
|
2022-05-03 04:46:50 +00:00
|
|
|
"crypto/frost",
|
2022-06-30 07:16:51 +00:00
|
|
|
|
2022-07-16 21:45:41 +00:00
|
|
|
"coins/ethereum",
|
2022-08-21 10:36:53 +00:00
|
|
|
"coins/monero/generators",
|
2022-04-27 04:09:05 +00:00
|
|
|
"coins/monero",
|
2022-06-30 07:16:51 +00:00
|
|
|
|
2022-05-26 08:36:19 +00:00
|
|
|
"processor",
|
2022-07-15 04:05:00 +00:00
|
|
|
|
|
|
|
"substrate/runtime",
|
|
|
|
"substrate/consensus",
|
2022-07-17 21:17:23 +00:00
|
|
|
"substrate/node",
|
|
|
|
|
2022-07-18 00:56:10 +00:00
|
|
|
"contracts/extension",
|
2022-07-17 21:17:23 +00:00
|
|
|
"contracts/multisig",
|
2022-04-22 01:36:18 +00:00
|
|
|
]
|
2022-07-15 04:05:00 +00:00
|
|
|
|
2022-07-26 07:05:15 +00:00
|
|
|
# Always compile Monero (and a variety of dependencies) with optimizations due
|
|
|
|
# to the unoptimized performance of Bulletproofs
|
|
|
|
[profile.dev.package]
|
|
|
|
subtle = { opt-level = 3 }
|
|
|
|
curve25519-dalek = { opt-level = 3 }
|
|
|
|
|
|
|
|
ff = { opt-level = 3 }
|
|
|
|
group = { opt-level = 3 }
|
|
|
|
|
|
|
|
crypto-bigint = { opt-level = 3 }
|
|
|
|
dalek-ff-group = { opt-level = 3 }
|
2022-08-29 07:32:59 +00:00
|
|
|
minimal-ed448 = { opt-level = 3 }
|
2022-07-26 07:05:15 +00:00
|
|
|
|
|
|
|
multiexp = { opt-level = 3 }
|
|
|
|
|
|
|
|
monero-serai = { opt-level = 3 }
|
|
|
|
|
2022-07-15 04:05:00 +00:00
|
|
|
[profile.release]
|
|
|
|
panic = "unwind"
|
2022-11-17 02:53:35 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
# array-bytes 4.1.0 is GPL-3.0.
|
|
|
|
# array-bytes git, which has no code changes, includes a dual-license under Apache-2.0.
|
|
|
|
array-bytes = { git = "https://github.com/hack-ink/array-bytes", rev = "994cd29b66bd2ab5c8c15f0b15a1618d4bb2d94c" }
|