831 B
831 B
Development
Information about developing the project. If you are only interested in using it, you can safely ignore this section. If you plan on contributing, see the contributor's guide.
Debugging with tokio-console
tokio-console
can be a useful tool for debugging and profiling. To make
a tokio-console
-enabled build of conduwuit, enable the tokio_console
feature,
disable the default release_max_log_level
feature, and set the
--cfg tokio_unstable
flag to enable experimental tokio APIs. A build might
look like this:
RUSTFLAGS="--cfg tokio_unstable" cargo build \
--release \
--no-default-features \
--features=systemd,element_hacks,gzip_compression,brotli_compression,zstd_compression,tokio_console