Brian Vincent

Results 9 comments of Brian Vincent
trafficstars

Just an update. I tested it recently and I'm still seeing the same behavior in reqwest 0.9.2.

I'm not sure. I'm not sure many people would want a different read and write timeout, but the option might be nice. Does a response timeout make sense with HTTP...

Thanks for reporting this. It might be worth adding something to the Readme. But the error message you pasted me seems to simply because Go disables cgo when cross compiling....

And now that you've enabled CGO, it seems that the issue is that you don't have the C environment and header files that it expects. I'm wondering if this is...

I found the same issue here https://github.com/mattn/go-sqlite3/issues/532 I would prefer, if possible, to just make sure that SQLite is properly configured, instead of needing this additional documentation. I did a...

If you look at the mxk driver, he allows setting hooks on commit, rollback, update, but also on busy. https://github.com/mxk/go-sqlite/ You can see how he does it. He exports his...

BTW, I personally think that not having a `database/sql` driver is a selling point. Sure, you can add it and make it optional, but here are the reasons why I...

I believe I'm being hit by a problem of my errors being `!Sync`. I'm implementing `Read` and `Write`, so I'm trying to wrap my errors in an `io::Error`. This should...

I support this PR. Here are some arguments I have for supporting it. * `io::Error` is designed to wrap other errors. This is required if anyone wants to implement `Read`...