web3-proxy/Cargo.toml

18 lines
444 B
TOML
Raw Normal View History

[workspace]
members = [
2022-09-15 20:57:24 +03:00
"deferred-rate-limiter",
2022-07-26 07:53:38 +03:00
"entities",
"migration",
2022-09-15 20:57:24 +03:00
"redis-rate-limiter",
2022-11-12 09:11:58 +03:00
"thread-fast-rng",
2022-08-05 22:22:23 +03:00
"web3_proxy",
]
2022-05-13 10:05:38 +03:00
2022-10-25 00:07:29 +03:00
[profile.release]
# we leave debug = true on so that sentry can give us line numbers
debug = true
2022-05-20 06:37:17 +03:00
# TODO: enable lto (and maybe other things proven with benchmarks) once rapid development is done
2022-05-13 23:50:11 +03:00
#lto = true
2022-10-25 00:07:29 +03:00
# TODO: we can't do panic = abort because the websockets disconnect by panicking sometimes