forked from fedimint/fedimint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (71 loc) · 2.23 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
members = [
"crypto/aead",
"crypto/derive-secret",
"crypto/hkdf",
"crypto/tbs",
"gateway/ln-gateway",
"gateway/cli",
"fedimintd",
"fedimint-bitcoind",
"fedimint-core",
"fedimint-client",
"fedimint-derive",
"fedimint-dbtool",
"fedimint-rocksdb",
"fedimint-logging",
"fedimint-testing",
"fedimint-server",
"fedimint-sqlite",
"client/cli",
"client/client-lib",
"modules/fedimint-dummy-common",
"modules/fedimint-dummy-client",
"modules/fedimint-dummy-server",
"modules/fedimint-mint-common",
"modules/fedimint-mint-client",
"modules/fedimint-mint-server",
"modules/fedimint-ln-common",
"modules/fedimint-ln-client",
"modules/fedimint-ln-server",
"modules/fedimint-wallet-common",
"modules/fedimint-wallet-client",
"modules/fedimint-wallet-server",
"integrationtests",
"fedimint-build",
"recoverytool"
]
resolver = "2"
[workspace.metadata]
name = "fedimint"
version = "0.1.0"
authors = ["The Fedimint Developers"]
edition = "2021"
description = "Fedimint is a prototype Federated Chaumian E-Cash Mint implementation, natively compatible with Bitcoin & the Lightning Network. This project is under heavy development, DO NOT USE WITH REAL FUNDS."
documentation = "https://github.com/fedimint/fedimint/tree/master/docs"
readme = "README.md"
homepage = "https://fedimint.org"
repository = "https://github.com/fedimint/fedimint"
license-file = "LICENSE"
keywords = ["bitcoin", "lightning", "chaumian", "e-cash", "federated"]
[profile.dev]
split-debuginfo = "packed"
# in dev mode optimize crates that are perf-critical (usually just crypto crates)
[profile.dev.package]
secp256k1 = { opt-level = 3 }
secp256k1-zkp = { opt-level = 3 }
secp256k1-sys = { opt-level = 3 }
secp256k1-zkp-sys = { opt-level = 3 }
bitcoin_hashes = { opt-level = 3 }
ff = { opt-level = 3 }
group = { opt-level = 3 }
pairing = { opt-level = 3 }
rand_core = { opt-level = 3 }
byteorder = { opt-level = 3 }
zeroize = { opt-level = 3 }
bls12_381 = { opt-level = 3 }
subtle = { opt-level = 3 }
ring = { opt-level = 3 }
threshold_crypto = { opt-level = 3 }
[patch.crates-io]
secp256k1-zkp = { git = "https://github.com/dpc/rust-secp256k1-zkp/", branch = "sanket-pr" }