There are some target-features which can be used by adding parameter -C target-feature=+sse,+avx to compiler. Available features can be shown using rustc --print target-features. There are also some default activated features, for example, SSE on AMDx64 targets.
How can I look which features are activated by default? I cannot find this anywhere and they aren't printed when I run cargo build --release --verbose.