ChanServ changed the topic of #rust-embedded to: Welcome to the Rust Embedded IRC channel! Bridged to #rust-embedded:matrix.org and logged at https://libera.irclog.whitequark.org/rust-embedded, code of conduct at https://www.rust-lang.org/conduct.html
bpye has quit [Quit: Ping timeout (120 seconds)]
bpye has joined #rust-embedded
nadja has quit [Ping timeout: 244 seconds]
nadja has joined #rust-embedded
starblue1 has quit [Ping timeout: 260 seconds]
starblue1 has joined #rust-embedded
GuineaWheek[m] has quit [Quit: Idle timeout reached: 172800s]
cinemaSundays has joined #rust-embedded
cinemaSundays has quit [Quit: Connection closed for inactivity]
emerent has quit [Ping timeout: 252 seconds]
emerent has joined #rust-embedded
starblue1 has quit [Ping timeout: 260 seconds]
starblue1 has joined #rust-embedded
davidmpye[m] has quit [Quit: Idle timeout reached: 172800s]
chrysn[m] has quit [Quit: Idle timeout reached: 172800s]
<thejpster[m]> Today GHA says "lariat is not a git command"
<thejpster[m]> wtf?
<JamesMunns[m]> what?
<i509vcb[m]> > A Command-Line Tool for Efficient Remote Android Device Management
<i509vcb[m]> This seems sus
<i509vcb[m]> The plot thickens
<i509vcb[m]> /usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +e472897aa8ec886ffd4c960b60eb2f8d9cb29bc3:refs/remotes/pull/854/merge
<i509vcb[m]> The guy seems legit from history, maybe pop an email to him?
<i509vcb[m]> * legit from account history, maybe
ivmarkov[m] has quit [Quit: Idle timeout reached: 172800s]
<dirbaio[m]> seems like a random github bug, unrelated to Zetier/lariat
<JamesMunns[m]> yeah, it could be some internal tool leaking out, that just has the same name
adamgreig[m] has quit [Quit: Idle timeout reached: 172800s]
<JamesMunns[m]> I have two plugs, if a little self-promo can be forgiven :D
<JamesMunns[m]> 1. New podcast episode that talks about `maitake-sync`, but also explains how `Waker`s and async/await drivers + data structures work: https://sdr-podcast.com/episodes/, now with video and slides!
<JamesMunns[m]> 2. I'm actively looking for sponsors for the postcard 2.0 release, if your company uses postcard and would be interested in supporting this, check out the details here: https://onevariable.com/blog/postcard-2-sponsors/
<JamesMunns[m]> * I have two plugs, if a little self-promo can be forgiven :D
<JamesMunns[m]> 1. New podcast episode that talks about`maitake-sync`, but also explains how`Waker`s and async/await drivers + data structures work: https://sdr-podcast.com/episodes/syncing/, now with video and slides!
<JamesMunns[m]> 2. I'm actively looking for sponsors for the postcard 2.0 release, if your company uses postcard and would be interested in supporting this, check out the details here: https://onevariable.com/blog/postcard-2-sponsors/
dygear[m] has joined #rust-embedded
<dygear[m]> <JamesMunns[m]> "I have two plugs, if a little..." <- > <@jamesmunns:beeper.com> I have two plugs, if a little self-promo can be forgiven :D... (full message at <https://catircservices.org/_irc/v1/media/download/AUvd6mp3IAZ2Az3M-NvBz-PV1Fqf28Jivrgvu0PDLvkVVk7MKI_YkcEYQBqm3cd1WGDRs4K1xytR1mphSbH24W1CeSKjiWZQAGNhdGlyY3NlcnZpY2VzLm9yZy9kTHpCZFlnWEdWWGVsZ1B4bWFBbmxZS3Q>)
xnor has quit [Quit: WeeChat 3.4]
xnor has joined #rust-embedded
xnor has quit [Quit: WeeChat 3.4]
<AlexandrosLiarok> Is there a good way to use derive(Format) and have this be a Noop vs Format trait when using defmt ?
<AlexandrosLiarok> * Is there a good way to use derive(Format) and have this be a Noop vs Format trait when using std vs defmt ?
<AlexandrosLiarok> * Is there a good way to use derive(Format) and have this be a Noop vs Format trait through a feature or something?
sugoi has joined #rust-embedded
<thejpster[m]> James Munns: I resigned from the cortex-m team some time ago but apparently I'm still on the mailing list for the team. Also, yes, rustc should stabilise -fp64 to allow people to use Cortex-M7 scheduling optimisations even if they only have an SP FPU, but I suspect if it was that easy they'd have done it already.
<thejpster[m]> if that doesn't make sense, ask someone on the team I guess ;)
drewbus[m] has quit [Quit: Idle timeout reached: 172800s]
<JamesMunns[m]> <thejpster[m]> "James Munns: I resigned from the..." <- that'd be the teams repo
<JamesMunns[m]> ah, but you are off that list, hmm.
rafael[m] has quit [Quit: Idle timeout reached: 172800s]
PhilMarkgraf[m] has quit [Quit: Idle timeout reached: 172800s]
pbsds37 has joined #rust-embedded
pbsds3 has quit [Ping timeout: 265 seconds]
pbsds37 is now known as pbsds3
jonored[m] has quit [Quit: Idle timeout reached: 172800s]
konkers[m] has joined #rust-embedded
<konkers[m]> <AlexandrosLiarok> "Is there a good way to use ..." <- `#[cfg_attr(feature = "fmt", derive(Format))]`
<konkers[m]> konkers[m]: Also useful for conditionally declaring `no_std`:
<konkers[m]> `#![cfg_attr(not(feature = "std"), no_std)]`