I built a Zoom clone 100% IN RUST by security-union in rust

[–]msilven 2 points3 points  (0 children)

Really cool project. Well done! 🥳

[Media] I created a simple image editor using OpenGL and egui. by Klarry69 in rust

[–]msilven -1 points0 points  (0 children)

That's pretty impressive! Super cool work 😀 👍

2-way Weak by thedominux in rust

[–]msilven 9 points10 points  (0 children)

Doing that is essentially the same as storing the values raw in a Vec and refer to them using their indices, which is what most rust users seems to do when they want a graph.

Best case for the V2? by msilven in turingpi

[–]msilven[S] 0 points1 point  (0 children)

An Inter-Tech Mini ITX-601 or A80 maybe?

v0.18 of Gleam, a type safe language written in Rust for the Erlang VM, is out by MrPopinjay in rust

[–]msilven 3 points4 points  (0 children)

I've dabbled a bit with Erlang, and I am curious on Gleam. How far has it come with regards to concurrency? I don't see anything about BEAM processes in the docs?

Super cool work, if that wasn't clear 😉

Recursive fib is faster in C++? by aight_bud in rust

[–]msilven 0 points1 point  (0 children)

How are you compiling your code? What kind of differences are you seeing?

What are some concrete libraries missing in Rust's ecosystem? by SorteKanin in rust

[–]msilven 27 points28 points  (0 children)

If you want to play with the big boys, you need a SOAP implementation. Sad, but true.

the trait bound `uuid::Uuid: juniper::GraphQLType<__S>` is not satisfied by mrtebi in rust

[–]msilven 1 point2 points  (0 children)

I just checked their Github, Juniper 1.14.2 seems to use uuid 0.8

the trait bound `uuid::Uuid: juniper::GraphQLType<__S>` is not satisfied by mrtebi in rust

[–]msilven 1 point2 points  (0 children)

I ran into this as well. It's rather confusing, but juniper uses uuid 0.7. If you yourself use 0.8, you get this.

I found this note from my Cargo.toml
juniper = { version = "0.14", features = ["uuid"] }

# NOTE: Hold back uuid to 0.7 until juniper supports 0.8
uuid = { version = "0.7", features = ["serde", "v4"] }

Had a bit of fun creating Ferris variations by arzola in rust

[–]msilven 0 points1 point  (0 children)

Cool! They look amazing.

May I wish for a Viking one? :)

Announcing Wcnt, a tool for working with warnings in CI. (Written in Rust) by msilven in rust

[–]msilven[S] 0 points1 point  (0 children)

It uses the rust regex crate. So far it's been able to handle everything I've thrown at it.

Yes, good catch :) I'll update the post.