tvallotton

Results 19 issues of tvallotton

The `todo!()` macro produces an unreachable expression warning: ```rust #[throws(Error)] fn foo() { todo!() } ``` ```rust warning: unreachable expression --> rocket_lang/src/main.rs:4:1 | 4 | #[throws(Error)] | ^^^^^^^^^^^^^^^^ unreachable expression...

The docs say `TryFrom` and `TryInto` are unstable, but they were stabilized in 1.34.

help wanted
docs

So far only bools, floats, integers and strings. It should also include bytestrings.

Currently default SQLite boolean defaults require to use a 0 and 1, whereas PostgreSQL and MySQL use boolean literals. It would be better if true and false were replaced with...

Specifically, remove `itertools`, `fehler`, and `thiserror` to speed up compile times. And make `chrono` optional.

Add support for getters for forein keys, with the following API: ```rust #[derive(Model)] struct Post { #[primary_key] id: i32, #[foreign_key(User.id, on_delete="cascade")] author: i32 } let post: Post = Post::from_key(&mut conn,...

enhancement

create a Json type can hold any type T that implements Serialize and Deserialize. Json probably using serde_json and Blob or Bytes using bincode. they should also implement Deref and...

Possible values could include: creation date, is active, and the number of failed login attempts, a reset password token and its date.