Cai Bear
Cai Bear
If invite code is pasted in chat it's formatted nicely and just joins team without opening new tab. Joining with a code bypasses requesting and won't fail even if `len(members)...
```toml dlhn = "0.1.6" serde = "1.0" ``` ```rust fn main() { use serde::{Serialize, Deserialize}; let original = " ".repeat(129); let mut serialized = vec![]; original.serialize(&mut dlhn::Serializer::new(&mut serialized)).unwrap(); let deserialized...
```toml speedy = "0.8.7" ``` ```rust use speedy::Readable; let _ = std::time::Duration::read_from_buffer(&[255; 12]); ``` Results in `thread 'main' panicked at 'overflow in Duration::new`. Could fix by checking `nanos < 1_000_000_000`...
There have been many requests for supporting 3rd party crates such as: time, rust_decimal, uuid, and chrono. Rather than implementing support manually for these crates and more, an easier solution...