Ryan Leckey
Ryan Leckey
- [ ] Should not actually spin up a server
Look at implementation here: https://docs.rs/hyper/0.11.2/src/hyper/server/mod.rs.html#390
Rocket's request guards are an awesome feature. We should have some equivalent / similar here. Currently, `shio::Context` provides a read/write request-local type map. Extend this to allow requests to _read_...
Add usage examples for common scenarios. The idea here is to get the example _working_ and then work towards making the example feel ergonomic. - [ ] `diesel` - Requires...
Currently jobs are run manually (with a helper method to run all currently pending jobs). We should define an execution model. 1. Does it make sense to have more than...
Blocked by https://github.com/zslayton/cron/issues/22
Direct usage ```rust let client = diesel::Client::::open("sqlite://some_file.db")?; // will checkout a connection from the pool, perform the query, and return the connection let results = users::table.load(&client)?; ``` Get a connection...
### Reporting a bug? ```ts if (!i18n.global.availableLocales.includes(locale)) { ``` ``` TS2345: Argument of type 'string' is not assignable to parameter of type '"en"'. ``` --- Best I can tell, the...
This would allow for allocation-less parsing. Currently it's required to clone data from the ASN1Blocks to move it into domain objects.