Shane F. Carr
Shane F. Carr
@nordzilla Please assign this to an appropriate 0.6 sprint milestone.
Note: currently we have https://unicode-org.github.io/icu4x-docs/doc/icu_datetime/mock/fn.parse_gregorian_from_str.html We should start with a design doc for this. We likely want to end up with a parser type named something like `IetfDateTimeStringParser` that is...
Question: do we want to have specific, stricter parsers for each individual type, as well as the fully-featured one conforming to IETF Sedate?
I have the following lib.rs file: ```rust use wasm_bindgen::prelude::*; use wee_alloc::WeeAlloc; // Use `wee_alloc` as the global allocator. #[global_allocator] static ALLOC: WeeAlloc = WeeAlloc::INIT; #[wasm_bindgen] extern "C" { fn alert(s:...
When building with `opt-level = "s"` and then running through `wasm-opt -Os`, the size gets smaller. It's hard to tell which symbols are which in the `wasm-opt` output, but even...
CC @ptomato @justingrant @Ms2ger @ryzokuken for potential impacts on Temporal
CC @mj1856
One snag with the trait definitions in my OP: they panic when given `std::i32::MIN` since it is not possible to call `.abs()` on that value. The actual trait implementations should...
I would very much appreciate this feature. This would enable `heapless::String` to be `Copy`, which would be super convenient.
Hello! Thanks for your work on Rkyv! I'm from the team developing [ICU4X](https://github.com/unicode-org/icu4x), a library for internationalization written in Rust to target multiple platforms and lower-resource, client-side devices. We are...