Hans Larsen
Hans Larsen
@clydin this is the current way of doing it for Angular (x locales * dev/prod). With Universal it would become much more easy to do what you're suggesting, but this...
Could, but we don't. Better support for i18n is not planned before the 1.0 final. For now the recommended way is to make a build for each locale you want...
Hi @datanglibai , Thanks for the request. We stopped accepting invalid options after 6.0 (deliberately), and this was a known breaking change. I don't think we want to allow custom...
Hey guys. I did some more work this weekend and I think I'm getting close to a low-level serialization API for CBOR. You can see the latest [here](https://github.com/hansl/cbor/tree/rewrite). I am...
Hi @Nadrieril, > it looks to me like it's building big values on the stack Correct, it can take up to 12 bytes on the stack if my calculations are...
@Nadrieril I added a `Serializer` structure to the cbor (see test [here](https://github.com/hansl/cbor/blob/rewrite/src/cbor/src/serialize_test.rs)). It takes a value and encodes it and send it to the writer directly. Now the current implementation...
@pickfire That API has changed but the README was not updated. Thanks for following up though, I'll update the README when I get a chance.
See my comments above. I have a todo list to finish the cbor crate itself, before switching to serde-cbor, and I have a branch running in my repo. Considering I...
Update: Deserialization was added this weekend for numbers, along with a number of small improvements to the way MajorType/MinorType interacts, and how traits interact (`Write` and `WriteTo`). This is a...
That would be me. Sorry, I kind of came forward in these comments but I haven't finished rewriting the low level one. The current work is at https://github.com/hansl/cbor/tree/rewrite.