Skip to content

Commit f457398

Browse files
authored
Merge branch 'master' into blog-post-debuginfo-size-reduction
2 parents d2035ef + 334bc42 commit f457398

File tree

1 file changed

+79
-88
lines changed

1 file changed

+79
-88
lines changed

draft/2025-09-24-this-week-in-rust.md

Lines changed: 79 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ and just ask the editors to select the category.
4646
### Project/Tooling Updates
4747

4848
### Observations/Thoughts
49-
5049
* [Reducing binary size of (Rust) programs with debuginfo](https://kobzol.github.io/rust/2025/09/22/reducing-binary-size-of-rust-programs-with-debuginfo.html)
50+
* [A more stable Rust Ecosystem](https://ranger-ross.github.io/blog/more-stable-ecosystem/)
5151

5252
### Rust Walkthroughs
5353

@@ -64,52 +64,20 @@ and just ask the editors to select the category.
6464
[submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704
6565

6666
## Calls for Testing
67-
An important step for feature implementation is for people to experiment with the
67+
An important step for RFC implementation is for people to experiment with the
6868
implementation and give feedback, especially before stabilization.
6969

70-
If you are a feature implementer and would like your feature to appear in this list, add a
70+
If you are a feature implementer and would like your RFC to appear in this list, add a
7171
`call-for-testing` label to your RFC along with a comment providing testing instructions and/or
7272
guidance on which aspect(s) of the feature need testing.
7373

74-
<!-- If there are new CfT items this week, use: -->
75-
<!--
76-
[Repo Name](Repo URL)
77-
* [<Feature name>](<Feature URL>)
78-
* [Testing steps](<Testing Steps URL>)
79-
-->
80-
<!-- where `Repo Name` and `Repo URL` are one of:
81-
[Rust](https://github.com/rust-lang/rust/labels/call-for-testing),
82-
[Rust language RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing),
83-
[Cargo](https://github.com/rust-lang/cargo/labels/call-for-testing) or
84-
[Rustup](https://github.com/rust-lang/rustup/labels/call-for-testing)
85-
-->
86-
87-
<!-- For all `Repo Names` with no new CfT items this week: use (removing the repos for which new
88-
CfT items did appear, of course) -->
89-
<!--
9074
* *No calls for testing were issued this week by
9175
[Rust](https://github.com/rust-lang/rust/labels/call-for-testing),
9276
[Rust language RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing),
9377
[Cargo](https://github.com/rust-lang/cargo/labels/call-for-testing) or
9478
[Rustup](https://github.com/rust-lang/rustup/labels/call-for-testing).*
95-
-->
96-
* *No calls for testing were issued this week by [Rust](https://github.com/rust-lang/rust/labels/call-for-testing),
97-
[Rust language RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing),
98-
[Cargo](https://github.com/rust-lang/cargo/labels/call-for-testing) or
99-
[Rustup](https://github.com/rust-lang/rustup/labels/call-for-testing).*
10079

10180
[Let us know](https://github.com/rust-lang/this-week-in-rust/issues) if you would like your feature to be tracked as a part of this list.
102-
-->
103-
104-
### [RFCs](https://github.com/rust-lang/rfcs/issues?q=label%3Acall-for-testing)
105-
106-
### [Rust](https://github.com/rust-lang/rust/labels/call-for-testing)
107-
108-
### [Rustup](https://github.com/rust-lang/rustup/labels/call-for-testing)
109-
110-
If you are a feature implementer and would like your RFC to appear on the above list, add the new `call-for-testing`
111-
label to your RFC along with a comment providing testing instructions and/or guidance on which aspect(s) of the feature
112-
need testing.
11381

11482
## Call for Participation; projects and speakers
11583

@@ -143,66 +111,65 @@ If you are an event organizer hoping to expand the reach of your event, please s
143111

144112
### Rust Compiler Performance Triage
145113

146-
<!-- Perf results go here -->
114+
Moving command-line argument quoting from C++ to Rust ([#146700](https://github.com/rust-lang/rust/pull/146700)) resulted in a nice performance
115+
win when dealing with many dependencies and large workspaces. A somewhat costly destination propagation
116+
compiler pass was enabled by default ([#142915](https://github.com/rust-lang/rust/pull/142915)), which resulted in some build time regressions,
117+
but should result in improved runtime performance. The rest of changes were small.
118+
119+
Triage done by **@kobzol**.
120+
Revision range: [52618eb3..ce4beebe](https://perf.rust-lang.org/?start=52618eb338609df44978b0ca4451ab7941fd1c7a&end=ce4beebecb77821734079cff47d8af08f9f27f11&absolute=false&stat=instructions%3Au)
121+
122+
**Summary**:
123+
124+
| (instructions:u) | mean | range | count |
125+
|:----------------------------------:|:-----:|:---------------:|:-----:|
126+
| Regressions ❌ <br /> (primary) | 0.3% | [0.1%, 1.9%] | 61 |
127+
| Regressions ❌ <br /> (secondary) | 0.6% | [0.1%, 3.4%] | 90 |
128+
| Improvements ✅ <br /> (primary) | -0.5% | [-1.9%, -0.2%] | 29 |
129+
| Improvements ✅ <br /> (secondary) | -1.3% | [-22.8%, -0.1%] | 71 |
130+
| All ❌✅ (primary) | 0.0% | [-1.9%, 1.9%] | 90 |
131+
132+
133+
1 Regression, 4 Improvements, 4 Mixed; 4 of them in rollups
134+
37 artifact comparisons made in total
135+
136+
[Full report here](https://github.com/rust-lang/rustc-perf/blob/8e7c75c12a21eb9c8c86cbfc75eff144a017f6b2/triage/2025/2025-09-23.md).
147137

148138
### [Approved RFCs](https://github.com/rust-lang/rfcs/commits/master)
149139

150140
Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These
151141
are the RFCs that were approved for implementation this week:
152142

153-
<!-- Approved RFCs go here, use this format: * [Topic](URL) -->
154-
<!-- or if none were approved this week, use: * *No RFCs were approved this week.* -->
155-
<!-- * []() -->
156-
157-
<!--
158-
### [Approved Major Change Proposals (MCP)](https://forge.rust-lang.org/compiler/mcp.html)
159-
<!~~ MCPs occur infrequently, so this section is commented out by default. ~~>
160-
<!~~ MCPs which have been approved or rejected this week go here, use this format: * [major change accepted|rejected] [Topic](URL) ~~>
161-
-->
143+
* *No RFCs were approved this week.*
162144

163145
### Final Comment Period
164146

165147
Every week, [the team](https://www.rust-lang.org/team.html) announces the 'final comment period' for RFCs and key PRs
166148
which are reaching a decision. Express your opinions now.
167149

168-
#### [RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period)
169-
<!-- RFCs which have entered FCP go here, use this format: * [disposition: merge|close] [Topic](URL) -->
170-
<!-- or if none entered FCP this week, use: * *No RFCs entered Final Comment Period this week.* -->
171-
<!-- * [disposition: ] []() -->
172-
173150
#### Tracking Issues & PRs
174-
<!-- Tracking Issues which have entered FCP go here, use this format: * [disposition: merge|close] [Topic](URL) -->
175-
<!-- or if none entered FCP this week, use: -->
176-
<!-- * *No Tracking Issues or PRs entered Final Comment Period this week.* -->
177-
<!-- * [disposition: ] []() -->
178-
179151
##### [Rust](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
152+
* [the `#[track_caller]` shim should not inherit `#[no_mangle]`](https://github.com/rust-lang/rust/pull/145724)
153+
* [Allow borrowing array elements from packed structs with ABI align <= packed align](https://github.com/rust-lang/rust/pull/145419)
180154

181-
##### [Cargo](https://github.com/rust-lang/cargo/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
155+
*No Items entered Final Comment Period this week for
156+
[Rust RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period),
157+
[Cargo](https://github.com/rust-lang/cargo/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc),
158+
[Language Team](https://github.com/rust-lang/lang-team/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc+),
159+
[Language Reference](https://github.com/rust-lang/reference/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc),
160+
[Leadership Council](https://github.com/rust-lang/leadership-council/issues?q=state%3Aopen%20label%3Afinal-comment-period) or
161+
[Unsafe Code Guidelines](https://github.com/rust-lang/unsafe-code-guidelines/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc).*
182162

183-
##### [Language Team](https://github.com/rust-lang/lang-team/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc+)
184-
185-
##### [Language Reference](https://github.com/rust-lang/reference/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
186-
187-
##### [Unsafe Code Guidelines](https://github.com/rust-lang/unsafe-code-guidelines/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc)
163+
Let us know if you would like your PRs, Tracking Issues or RFCs to be tracked as a part of this list.
188164

189165
#### [New and Updated RFCs](https://github.com/rust-lang/rfcs/pulls)
190-
<!-- New or updated RFCs go here, use this format: * [new|updated] [Topic](URL) -->
191-
<!-- or if there are no new or updated RFCs this week, use: -->
192-
<!-- * *No New or Updated RFCs were created this week.* -->
193-
<!-- * [new|updated] []() -->
166+
* [RFC: Add iter! macro](https://github.com/rust-lang/rfcs/pull/3861)
194167

195168
## Upcoming Events
196169

197170
Rusty Events between 2025-09-24 - 2025-10-22 🦀
198171

199172
### Virtual
200-
* 2025-09-17 | Virtual (Vancouver, BC, CA) | [Vancouver Rust](https://www.meetup.com/vancouver-rust/events/)
201-
* [**Rust Study/Hack/Hang-out**](https://www.meetup.com/vancouver-rust/events/307731033)
202-
* 2025-09-18 | Virtual (Nürnberg, DE) | [Rust Nuremberg](https://www.meetup.com/rust-noris/events/)
203-
* [**Rust Nürnberg online**](https://www.meetup.com/rust-noris/events/305646039/)
204-
* 2025-09-23 | Virtual (Dallas, TX, US) | [Dallas Rust User Meetup](https://www.meetup.com/dallasrust/events/)
205-
* [**Fourth Tuesday**](https://www.meetup.com/dallasrust/events/305361443)
206173
* 2025-09-25 | Virtual (Berlin, DE) | [Rust Berlin](https://www.meetup.com/rust-berlin/events/)
207174
* [**Rust Hack and Learn**](https://www.meetup.com/rust-berlin/events/306046637)
208175
* 2025-09-28 | Virtual (Dallas, TX, US) | [Dallas Rust User Meetup](https://www.meetup.com/dallasrust/events/)
@@ -225,10 +192,16 @@ Rusty Events between 2025-09-24 - 2025-10-22 🦀
225192
* [**Second Tuesday**](https://www.meetup.com/dallasrust/events/305361534/)
226193
* 2025-10-15 | Virtual (Vancouver, BC, CA) | [Vancouver Rust](https://www.meetup.com/vancouver-rust/events/)
227194
* [**Rust Study/Hack/Hang-out**](https://www.meetup.com/vancouver-rust/events/307731034/)
195+
* 2025-10-16 | Virtual (Nürnberg, DE) | [Rust Nuremberg](https://www.meetup.com/rust-noris/events/)
196+
* [**Rust Nürnberg online**](https://www.meetup.com/rust-noris/events/305646039/)
197+
* 2025-10-19 | Virtual (Dallas, TX, US) | [Dallas Rust User Meetup](https://www.meetup.com/dallasrust/events/)
198+
* [**Rust Readers Discord Discussion: Macros**](https://www.meetup.com/dallasrust/events/311109167)
199+
* 2025-10-21 | Virtual (London, UK) | [Women in Rust](https://www.meetup.com/women-in-rust/events/)
200+
* [**👋 Community Catch Up**](https://www.meetup.com/women-in-rust/events/311068625)
201+
* 2025-10-21 | Virtual (Washington, DC, US) | [Rust DC](https://www.meetup.com/rustdc/events/)
202+
* [**Mid-month Rustful**](https://www.meetup.com/rustdc/events/310002307)
228203

229204
### Asia
230-
* 2025-09-17 | Tel Aviv-yafo, IL | [Rust 🦀 TLV](https://www.meetup.com/rust-tlv/events/)
231-
* [**In person Rust September 2025 at Varonis in Herzeliya**](https://www.meetup.com/rust-tlv/events/310708628)
232205
* 2025-10-02 | Seoul, KR | [Seoul Rust (Programming Language) Meetup](https://www.meetup.com/rust-seoul-meetup/events/)
233206
* [**Seoul Rust Meetup**](https://www.meetup.com/rust-seoul-meetup/events/310824483)
234207
* 2025-10-04 | Bangalore, IN | [Rust Bangalore](https://hasgeek.com/rustbangalore)
@@ -237,20 +210,18 @@ Rusty Events between 2025-09-24 - 2025-10-22 🦀
237210
* [**Malaysia Rust Meetup**](https://docs.google.com/forms/d/e/1FAIpQLScESY4eHc5lzZznAHZmFxI85CYaOKCYTQASRwXxC2y0KpI6zw/viewform)
238211
* 2025-10-09 | Tokyo, JP | [Tokyo Rust Meetup](https://www.meetup.com/tokyo-rust-meetup/events/)
239212
* [**Building Pocket-Sized Terminal UIs with Rust**](https://www.meetup.com/tokyo-rust-meetup/events/310899137/)
213+
* 2025-10-20 | Tel Aviv-yafo, IL | [Rust 🦀 TLV](https://www.meetup.com/rust-tlv/events/)
214+
* [**In person Rust October 2025 at AWS in Tel Aviv**](https://www.meetup.com/rust-tlv/events/310628902)
240215

241216
### Europe
242-
* 2025-09-17 | Girona, ES | [Rust Girona](https://lu.ma/rust-girona) | [Silicon Girona](https://silicongirona.club)
243-
* [**Rust Girona Hack & Learn 09 2025**](https://lu.ma/ql3u6q5u)
244-
* 2025-09-18 | Aarhus, DK | [Rust Aarhus](https://www.meetup.com/rust-aarhus/events/)
245-
* [**Talk Night at Mjølner Informatics**](https://www.meetup.com/rust-aarhus/events/310562343)
246-
* 2025-09-23 | Paris, FR | [Rust Paris](https://www.meetup.com/rust-paris/events/)
247-
* [**Rust meetup #78**](https://www.meetup.com/rust-paris/events/310935603)
248217
* 2025-09-24 | Göteborg, SE | [Rust Göteborg](https://www.meetup.com/rustgbg/events/)
249218
* [**Rust Gbg — September 2025**](https://www.meetup.com/rustgbg/events/310866773)
250219
* 2025-09-24 | München, DE | [Rust Munich](https://www.meetup.com/rust-munich/events/)
251-
* [**Rust Munich 2025 / 3 - hybrid**](https://www.meetup.com/rust-munich/events/307105978)
220+
* [**Rust Munich 2025 / 3**](https://www.meetup.com/rust-munich/events/307105978)
252221
* 2025-09-25 | Augsburg, DE | [Rust Augsburg](https://rust-augsburg.github.io/meetup/introduction.html)
253222
* [**Augsburg Rust Meetup #15**](https://rust-augsburg.github.io/meetup/Meetup_15.html)
223+
* 2025-09-25 | Copenhagen, DK | [Copenhagen Rust Community](https://www.meetup.com/copenhagen-rust-community/events/)
224+
* [**Rust meetup #61**](https://www.meetup.com/copenhagen-rust-community/events/311100221)
254225
* 2025-09-25 | London, UK | [Women in Rust](https://www.meetup.com/women-in-rust/events/)
255226
* [**Women in Rust x Scala: Functional Programming in Rust & Streams with Aquascape**](https://www.meetup.com/women-in-rust/events/311056499/)
256227
* 2025-09-27 | Stockholm, SE | [Stockholm Rust](https://www.meetup.com/stockholm-rust/events/)
@@ -259,26 +230,34 @@ Rusty Events between 2025-09-24 - 2025-10-22 🦀
259230
* [**LDN Talks September 2025 Community Showcase**](https://www.meetup.com/rust-london-user-group/events/311070068/)
260231
* 2025-10-01 | Olomouc, CZ | [Rust Moravia](https://www.meetup.com/rust-moravia/events/)
261232
* [**4. Rust Moravia Meetup (In the capital!)**](https://www.meetup.com/rust-moravia/events/310743282)
233+
* 2025-10-01 | Oxford, UK | [Oxford ACCU/Rust Meetup.](https://www.meetup.com/oxford-rust-meetup-group/events/)
234+
* [**Building AI chatbots with Webassembly, Rust, and Leptos**](https://www.meetup.com/oxford-rust-meetup-group/events/311170808)
235+
* 2025-10-01 | Paris, FR | [Paris Rustaceans](https://www.eventbrite.fr/e/rust-meetup-in-paris-tickets-1686673127729)
236+
* [**Rust Meetup in Paris**](https://www.eventbrite.fr/e/rust-meetup-in-paris-tickets-1686673127729)
262237
* 2025-10-02 | Oslo, NO | [Rust Oslo](https://www.meetup.com/rust-oslo/events/)
263238
* [**Rust Hack'n'Learn at Kampen Bistro**](https://www.meetup.com/rust-oslo/events/310062134)
264-
* 2025-10-08 | Paris, FR | [Rust Paris](https://www.meetup.com/rust-paris/events/)
265-
* [**Rust meetup #79**](https://www.meetup.com/rust-paris/events/310424476)
266239
* 2025-10-08 | Girona, ES | [Rust Girona](https://lu.ma/rust-girona) | [Silicon Girona](https://silicongirona.club)
267240
* [**Rust Girona Hack & Learn 10 2025**](https://luma.com/8u55jo0h)
241+
* 2025-10-08 | Paris, FR | [Rust Paris](https://www.meetup.com/rust-paris/events/)
242+
* [**Rust meetup #79**](https://www.meetup.com/rust-paris/events/310424476)
268243
* 2025-10-08 | Reading, UK | [Reading Rust Workshop](https://www.meetup.com/reading-rust-workshop/events/)
269244
* [**Reading Rust Meetup**](https://www.meetup.com/reading-rust-workshop/events/308944041)
245+
* 2025-10-09 | Girona, ES | [Rust Girona](https://lu.ma/rust-girona) | [Silicon Girona](https://silicongirona.club)
246+
* [**Sessió setmanal de codificació / Weekly coding session**](https://luma.com/jotnli2g)
270247
* 2025-10-09 - 2025-10-10 | Hybrid (Paris, FR) | [EuroRust](https://eurorust.eu/)
271248
* [**EuroRust 2025**](https://eurorust.eu/schedule/)
272249
* 2025-10-14 | Basel, CH | [Rust Basel](https://www.meetup.com/rust-basel/events/)
273250
* [**Rust Meetup #13 @ letsboot**](https://www.meetup.com/rust-basel/events/310827834/)
251+
* 2025-10-16 | Girona, ES | [Rust Girona](https://lu.ma/rust-girona) | [Silicon Girona](https://silicongirona.club)
252+
* [**Sessió setmanal de codificació / Weekly coding session**](https://luma.com/o8fh3fh7)
253+
* 2025-10-21 | Aarhus, DK | [Rust Aarhus](https://www.meetup.com/rust-aarhus/events/)
254+
* [**Hack Night**](https://www.meetup.com/rust-aarhus/events/311035141)
255+
* 2025-10-21 | Leipzig, SN, DE | [Rust - Modern Systems Programming in Leipzig](https://www.meetup.com/rust-modern-systems-programming-in-leipzig/events/)
256+
* [**Topic TBD**](https://www.meetup.com/rust-modern-systems-programming-in-leipzig/events/308592252)
257+
* 2025-10-21 | London, UK | [London Rust Project Group](https://www.meetup.com/london-rust-project-group/events/)
258+
* [**Rust in Surgery: Powering the Data Pipelines**](https://www.meetup.com/london-rust-project-group/events/310813952)
274259

275260
### North America
276-
* 2025-09-18 | Seattle, WA, US | [Seattle Rust User Group](https://www.meetup.com/join-srug/events/)
277-
* [**September, 2025 SRUG (Seattle Rust User Group) Meetup**](https://www.meetup.com/seattle-rust-user-group/events/308677324)
278-
* 2025-09-20 | Boston, MA, US | [Boston Rust Meetup](https://www.meetup.com/bostonrust/events/)
279-
* [**Boston University Rust Lunch, Sep 20**](https://www.meetup.com/bostonrust/events/311038454/)
280-
* 2025-09-21 | Detroit, MI, US | [Detroit Rust](https://www.meetup.com/detroitrust/events/)
281-
* [**Detroit Rust Hacking Hangout**](https://www.meetup.com/detroitrust/events/311047467/)
282261
* 2025-09-24 | Austin, TX, US | [Rust ATX](https://www.meetup.com/rust-atx/events/)
283262
* [**Rust Lunch - Fareground**](https://www.meetup.com/rust-atx/events/310287849)
284263
* 2025-09-24 | Charlottesville, VA, US | [Charlottesville Rust Meetup](https://www.meetup.com/charlottesville-rust-meetup/events/)
@@ -295,10 +274,22 @@ Rusty Events between 2025-09-24 - 2025-10-22 🦀
295274
* [**MIT Rust Lunch, Sep 27**](https://www.meetup.com/bostonrust/events/311038485/)
296275
* 2025-09-30 | Boston, MA, US | [Boston Rust Meetup](https://www.meetup.com/bostonrust/events/)
297276
* [**Evening Boston Rust Meetup with Bevy and Isograph, September 30**](https://www.meetup.com/bostonrust/events/310907806/)
277+
* 2025-10-02 | Mountain View, CA, US | [Hacker Dojo](https://www.meetup.com/hackerdojo/events/)
278+
* [**RUST MEETUP at HACKER DOJO**](https://www.meetup.com/hackerdojo/events/311004898)
298279
* 2025-10-02 | Saint Louis, MO, US | [STL Rust](https://www.meetup.com/stl-rust/events/)
299280
* [**🚁 Rust in Flight: Lessons from Designing a 3D‑Printed Quadcopter with Embedded**](https://www.meetup.com/stl-rust/events/310279407)
300281
* 2025-10-04 | Boston, MA, US | [Boston Rust Meetup](https://www.meetup.com/bostonrust/events/)
301282
* [**North End Rust Lunch, Oct 4**](https://www.meetup.com/bostonrust/events/310983705/)
283+
* 2025-10-09 | Lehi, UT, US | [Utah Rust](https://www.meetup.com/utah-rust/events/)
284+
* [**Aya the Beholder: Writing an eBPF Firewall with the Aya Crate**](https://www.meetup.com/utah-rust/events/311145663)
285+
* 2025-10-16 | Nashville, TN, US | [Music City Rust Developers](https://www.meetup.com/music-city-rust-developers/events/)
286+
* [**Year In Review**](https://www.meetup.com/music-city-rust-developers/events/304333267)
287+
* 2025-10-21 | San Francisco, CA, US | [San Francisco Rust Study Group](https://www.meetup.com/san-francisco-rust-study-group/events/)
288+
* [**Rust Hacking in Person**](https://www.meetup.com/san-francisco-rust-study-group/events/308284343)
289+
* 2025-10-21 | San Francisco, CA, US | [Vara & Gear](https://luma.com/events-by-vara-gear)
290+
* [**Rust Workshop by Vara Network**](https://luma.com/kbs2os1c)
291+
* 2025-10-22 | Austin, TX, US | [Rust ATX](https://www.meetup.com/rust-atx/events/)
292+
* [**Rust Lunch - Fareground**](https://www.meetup.com/rust-atx/events/310457307)
302293

303294
### Oceania:
304295
* 2025-10-01 | Perth, WA, AU | [Rust Perth Meetup Group](https://www.meetup.com/perth-rust-meetup-group/events/)

0 commit comments

Comments
 (0)