Ryan Leckey
Ryan Leckey
```toml # .env FOO_DATABASE_URL="postgres://..." ``` #### Option 1 Inspired from the `log` crate and `log!(target: _)`. ```rust let rows = sqlx::query!(database: "foo", "SELECT * FROM bar WHERE x = ?val",...
* Is this a cargo feature flag? How does it work? Perhaps have `sqlite` (bundled) and `sqlite_sys` (unbundled) ? * What is the default inclusion strategy? My preference leans heavily...
Allow the generic `route` decorator to accept _any_ method. I'd be okay with requiring quotes for non-standard methods. ```rust #[route(FOO, path = "...")] ``` Or ```rust #[route("FOO", path = "...")]...
I did a foray into implementing async support with libpq because I naively thought that because libpq looks like it has non-blocking functions that you can effectively use them in...
This library has gotten quite stale over the last year and I've been loathe to come back to it mostly because I don't like it. It's complex to use, complex...
```rust let redis_client = redis::Client::open(settings.get("redis_url").unwrap()).unwrap(); ``` > invalid type: string "...", expected a borrowed string --- This is because of type conversions. We must return a `String` because there may...
``` [ant:instrumentation] ERROR: io/vertx/core/buffer/Buffer java.io.IOException: Class not found at co.paralleluniverse.asm.ClassReader.readStream(ClassReader.java:300) at co.paralleluniverse.asm.ClassReader.(ClassReader.java:273) at co.paralleluniverse.fibers.instrument.MethodDatabase.extractSuperClass(MethodDatabase.java:364) at co.paralleluniverse.fibers.instrument.MethodDatabase.getDirectSuperClass(MethodDatabase.java:401) at co.paralleluniverse.fibers.instrument.MethodDatabase.getSuperClasses(MethodDatabase.java:382) at co.paralleluniverse.fibers.instrument.MethodDatabase.getCommonSuperClass(MethodDatabase.java:273) at co.paralleluniverse.fibers.instrument.DBClassWriter.getCommonSuperClass(DBClassWriter.java:50) at co.paralleluniverse.asm.SymbolTable.addMergedType(SymbolTable.java:1198) at co.paralleluniverse.asm.Frame.merge(Frame.java:1294) at co.paralleluniverse.asm.Frame.merge(Frame.java:1175) at co.paralleluniverse.asm.MethodWriter.computeAllFrames(MethodWriter.java:1617)...
I'm puzzled on this one. I could understand Rust not being able to infer the type with how generic `Stream::collect` is but Rust can somehow infer it from the declaration...
See https://github.com/prettier/prettier/pull/11827
First off, brilliant git extension. I'm evaluating this over something more traditional like an issue time tracker (eg. [Tempo](http://tempo.io/)). I really like the usage of the tool. It just needs...