The Rust Libs Blitz
blog.rust-lang.org
The Rust Libs Blitz
1–10 of 125 posts
Re: The Rust Libs Blitz
#2Re: The Rust Libs Blitz
#3Re: The Rust Libs Blitz
#4Unfortunate name. I thought this was about libz aka zlib.
andy@xps ~> python3
>>> "Libz" == "libz"
FalseRe: The Rust Libs Blitz
#5Re: The Rust Libs Blitz
#6Is there a plan to make these things statically checkable by rustc/rustfmt/rust-tidy or some sort?
Re: The Rust Libs Blitz
#7May I suggest the bytes crate [0]? It's one of those small libraries providing a key building block (mutable and immutable byte buffers), and is a dependency of tokio-io and any other crate which implements tokio-io's Encoder/Decoder traits. [0] https://crates.io/crates/bytes
Re: The Rust Libs Blitz
#8> The product of this process will be a mature core of libraries together with a set of API guidelines that Rust authors can follow to gain insight into the design of Rust and level up crates of their own interest. Is there a plan to make these things statically checkable by rustc/rustfmt/rust-tidy or some sort?
Re: The Rust Libs Blitz
#9"Vec" currently needs unsafe code, because Rust doesn't have the expressive power to talk about a partially initialized array. Everything else with unsafe code is an optimization. Often a premature one. Maps should be built on "Vec", for example.