Coleman McFarland

Results 16 comments of Coleman McFarland

Perhaps this implementation does not belong in core, but since I need access to some types that are currently private (to do the handshake in the way that gRPC makes...

I have also encountered this use-case when using home-grown logging interfaces that render large tables of data in pure HTML server-side. That exact use case might be kind of an...

Just a little feedback: When setting up a new machine (and shipping over an old config) I was rather surprised that specifying a missing font would crash Alacritty on boot....

Sure thing! I made a fork on Gitlab for my filthy hacks: https://gitlab.com/keyvalue/rusoto/blob/hack_codegen/service_crategen/src/commands/generate/codegen/mod.rs#L399 If you search that file for "hack" you should see some other changes. In particular, I needed...

I remember coming across the [reddit post](https://www.reddit.com/r/rust/comments/8wv32h/feedback_for_ffi_guide/?st=jlwr3hmm&sh=e4c68475), but I just recently needed this rewrite of your guide. The rewrite is a little less Qt focused. I am trying to _embed_...

My first attempt was straightforward: to [write a .so library in Rust](https://github.com/anxiousmodernman/sled-jimtcl#sled-jimtcl) that will be auto-loaded by the scripting language. This lets us write language extensions in Rust that present...

Thank you for the issue! You are correct, this is code duplication. And it could be solved by the method you describe: extracting a 3rd crate of pure data types....

I did that and it felt like progress. Still hitting a roadblock, though. My current state: 1. did `git checkout Cargo.toml` to throw away my changes there 2. Xargo.toml now...

Okay I'm trying a different angle: compiling a separate binary crate against steed Here is my build script https://github.com/anxiousmodernman/steedtest/blob/master/build.sh The error: ![missing_core](https://user-images.githubusercontent.com/396004/35021564-4b1778fa-fae6-11e7-8cec-16d35bfe25a4.png) It just feels like our custom target is...

We'll get there :) FWIW, I tried cross and it didn't quite work either. However, I'd like to pursue the non-docker strategy to better grok the configuration.