--- Day changed Mon Jul 30 2018 02:25 < andytoshi> so, it will take a bit of effort to get everything in -- there are several outstanding PR in bitcoin_hashes, and there will be a few more once these are merged, and then rust-bitcoin will have a huge-diff-little-material-change PR to actually use this stuff 02:25 < andytoshi> but i've done this on my laptop, and the result is that rust-bitcoin compiles by default with exactly 4 dependencies that we don't control 02:26 < andytoshi> `rand` and `libc` which are maintained by the compiler maintainers so arguably that shouldn't count 02:26 < andytoshi> `gcc` which is a build-time dependency but not actually used by the library 02:27 < dongcarl> Does bitcoin_hashes need fuzz testing? 02:27 < andytoshi> and `byteorder` which is the sole "real" dependency, and its maintainers have been great (no breaking changes, works with old compilers, has no dependencies itself) 02:27 < andytoshi> dongcarl: not really, but it was quick and easy to write fuzzers that compared against rust-crypto, so i did 06:04 -!- windsok [~windsok@unaffiliated/windsok] has quit [Remote host closed the connection] 06:06 -!- windsok [~windsok@rarepepe.cash] has joined #rust-bitcoin 06:06 -!- windsok [~windsok@rarepepe.cash] has quit [Changing host] 06:06 -!- windsok [~windsok@unaffiliated/windsok] has joined #rust-bitcoin 06:31 -!- windsok [~windsok@unaffiliated/windsok] has quit [Remote host closed the connection] 06:34 -!- windsok [~windsok@rarepepe.cash] has joined #rust-bitcoin 06:34 -!- windsok [~windsok@rarepepe.cash] has quit [Changing host] 06:34 -!- windsok [~windsok@unaffiliated/windsok] has joined #rust-bitcoin 10:17 -!- TamasBlummer [~Thunderbi@p200300E38F029B228918B94C7CD181C2.dip0.t-ipconnect.de] has joined #rust-bitcoin 10:22 -!- TamasBlummer [~Thunderbi@p200300E38F029B228918B94C7CD181C2.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 10:33 -!- TamasBlummer [~Thunderbi@p200300E38F029B22BC3D273BE7BBE236.dip0.t-ipconnect.de] has joined #rust-bitcoin 13:03 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-cthepkieahxpyxvp] has joined #rust-bitcoin 18:52 < andytoshi> https://blog.rust-lang.org/2018/07/27/what-is-rust-2018.html 18:53 < andytoshi> if debian ever plans to update their rust compiler on i386/arm, there's a nice shiny target for them 20:42 < dongcarl> I'm so excited for 2018 21:06 -!- elichai2 [uid212594@gateway/web/irccloud.com/x-cthepkieahxpyxvp] has quit [Quit: Connection closed for inactivity] 22:01 -!- TamasBlummer [~Thunderbi@p200300E38F029B22BC3D273BE7BBE236.dip0.t-ipconnect.de] has quit [Quit: TamasBlummer] 22:30 < andytoshi> after discussion on #rust some folks suggested i write rust bindings for https://github.com/cmouse/yahttp if i'm so suspicious of the fast-moving dependency-happy situation with rust HTTP libs 22:30 < andytoshi> i'm meditating on it. it _is_ C++, which, yikes, but otoh it is small and clean and has no deps of its own (except boost) 22:30 < andytoshi> and it's been around forever