djrenren

Results 28 comments of djrenren

I'm looking into at least client-side strong authentication support. Trying to get a handle on the message system now. I _might_ have something working soon.

Wow totally missed your comment. nah, the farthest i could get was authenticating if i poached the GSSAPI token. I tried reading through Cyrus but I just got lost in...

Hi, one of authors of the CT-Wasm paper here. The purpose of multiple memories was to ensure that the secret types could ensure there was no leakage. When we presented...

Okay so node and npm are currently built entirely with windows in mind, that's why node-gyp exists. Not to mention the whole point of libgit2 is to be a cross-platform...

I'd like to refer you all to the official libgit2 page: ![crossplatform](https://f.cloud.github.com/assets/634666/586854/630d58f4-c958-11e2-931d-2d835a5a6aee.png) As you can see windows is supported. So regardless of how all of you define "crossplatform" we should...

@jmendeth I understand you hate windows. Doesn't mean people don't use it. I get that a lot of people don't want to work with Windows or put in the work...

+1 Really need this feature because without it I'm stuck using nodegit >.<

Sorry for the hasty bug report. Here's the deets: Command: ```bash $ cbindgen --config cbindgen.toml --output my_header.h src/lib.rs ``` `cbindgen.toml`: I just used template here: https://github.com/eqrion/cbindgen/blob/master/template.toml `lib.rs`: ```rust #[repr(C)] pub...

Ah okay looks like it's something about the template config that causes this cuz if I omit it, I get the output you got.

More digging seems to reveal that the config option responsible is `rename_fields`: https://github.com/eqrion/cbindgen/blob/master/src/bindgen/config.rs#L359 `StructConfig::rename_fields` is an `Option`. This is strange because `RenameRule::None` exists. Which means you could have: ```rust rename_fields:...