web3-proxy/Cargo.toml
Bryan Stitt 1fd8f6f383
Deduped broadcast channel (#209)
* 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
2023-09-13 12:05:47 -07:00

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