1fd8f6f383
* upgrade and start adding deduped_broadcast * basic test * accept arg for cache ttl * first pass at bringing the tx firehose back * try_send instead of send since there aren't always receivers * deduped broadcaster needs the try send * track counts and include in /status * use config for enable subscribe_txs
27 lines
485 B
TOML
27 lines
485 B
TOML
[workspace]
|
|
members = [
|
|
"deduped_broadcast",
|
|
"deferred-rate-limiter",
|
|
"entities",
|
|
"latency",
|
|
"migration",
|
|
"payment-contracts",
|
|
"rate-counter",
|
|
"redis-rate-limiter",
|
|
"web3_proxy",
|
|
"web3_proxy_cli",
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
# `debug = true` so that sentry can give us line numbers
|
|
debug = true
|
|
|
|
[profile.faster_release]
|
|
inherits = "release"
|
|
|
|
# spend longer compiling for a faster binary
|
|
codegen-units = 1
|
|
# `link time optimization = true = fat`
|
|
lto = true
|