Hanno Braun

Results 489 comments of Hanno Braun

Just out of interest, I tracked down the pull request that introduced the distinction between exterior and interior cycles: https://github.com/hannobraun/fornjot/pull/401 It's been a while!

Thanks for your replies! Just FYI, I won't be able to follow up here today, and tomorrow I'm off to RustFest. I'll check back in next week, or the week...

> Have fun at RustFest! Say hi to the guys from Seasoned Software if you catch them! Thank you! I don't know who they are, but I'll keep my eyes...

@laumann I did some research based on your comments. > Hmm, looking at `clean_rmeta()`, could it be that the filter: > > .filter(|s| s.ends_with("/deps")) > > is the problem? I...

> When cargo test fails, do you have multiple versions of the same `rlibs`? Yes. After a `cargo clean && cargo test && cargo test --features compiletest`, I have these...

> Can we identify which is which? If so, we might be able to just add those as link flags, instead of the entire folder. Otherwise I'm not what to...

I've taken another look at the Cargo code, but didn't come up with anything useful before running out of time. I've now added a workaround on my side (disabled caching...

I'm open to solutions that reduce code size in debug mode, as long as they don't make things worse in other ways. Also, one of the issues the working group...

I removed the unit tests in #12, as expected. This doesn't make the crate completely test-less though. There are some [examples in the dwm1001 crate](https://github.com/braun-robotics/rust-dwm1001/tree/master/examples) that serve as end-to-end tests.

This crate [uses embedded-hal now](https://github.com/braun-robotics/rust-dw1000/pull/68), which means we can write integration tests and this issue is no longer blocked. I'm not going to tackle that right now though, as the...