Hey hope this is the correct channel for this question.. I'm trying to compile my app using defmt package. All's well untill I try to compile in using `DEFMT_LOG=info cargo build`, I get the following output: ``` = note: rust-lld: error: undefined symbol: _defmt_timestamp >>> referenced by mod.rs:98 (src/export/mod.rs:98) >>> defmt-b3574cfbac2705a6.defmt.acde9afc69f804a1-cgu.0.rcgu.o:(defmt::export::header::hf448a0974afc21b0) in archive /Users/mfiumara/repos /nrf91-at-client-rs/target/thumbv8m.main-none-eabihf/debug/deps/libdefmt-b3574cfbac2705a6.rlib rust-lld: warning: address (0x68b18) of section .rodata is not a multiple of alignment (16) rust-lld: error: section .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"<<<<< Booting >>>>>","disambiguator":"16115885841691070370"," crate_name":"nrf91_at_client_rs"} virtual address range overlaps with .text >>> .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"<<<<< Booting >>>>>","disambiguator":"16115885841691070370","crate_name":"nrf91_at _client_rs"} range is [0x50144, 0x50144] >>> .text range is [0x50144, 0x68B17] rust-lld: error: section .text virtual address range overlaps with .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"Trying to init mode m","disambiguator":"3175484939708440752","crate_name":"nrf91_at_client_rs"} >>> .text range is [0x50144, 0x68B17] >>> .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"Trying to init modem","disambiguator":"3175484939708440752","crate_name":"nrf91_at _client_rs"} range is [0x50145, 0x50145] rust-lld: error: section .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"<<<<< Booting >>>>>","disambiguator":"16115885841691070370"," crate_name":"nrf91_at_client_rs"} load address range overlaps with .text >>> .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"<<<<< Booting >>>>>","disambiguator":"16115885841691070370","crate_name":"nrf91_at _client_rs"} range is [0x50144, 0x50144] >>> .text range is [0x50144, 0x68B17] rust-lld: error: section .text load address range overlaps with .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"Trying to init modem", "disambiguator":"3175484939708440752","crate_name":"nrf91_at_client_rs"} >>> .text range is [0x50144, 0x68B17] >>> .defmt.{"package":"nrf91-at-client-rs","tag":"defmt_info","data":"Trying to init modem","disambiguator":"3175484939708440752","crate_name":"nrf91_at _client_rs"} range is [0x50145, 0x50145] warning: `nrf91-at-client-rs` (bin "nrf91-at-client-rs") generated 3 warnings error: could not compile `nrf91-at-client-rs` (bin "nrf91-at-client-rs") due to previous error; 3 warnings emitted ``` Related stuff in my cargo.toml: ``` defmt = "0.3.2" defmt-rtt-target = "0.3.0" rtt-target = "0.3.1" panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] } ``` Any ideas where to look?