David Wosk

Results 3 issues of David Wosk

Running into an issue when trying to run `protoc` after installing the package globally. Installation works: ```shell $ npm install -g @protobuf-ts/protoc changed 1 package, and audited 2 packages in...

Reproduction: ```rust use rsa::pkcs8::{EncodePrivateKey, EncodePublicKey, LineEnding}; use rsa::{RsaPrivateKey, RsaPublicKey}; use std::io::Write; fn main() { let mut rng = rand::thread_rng(); let bits = 2048; let priv_key = RsaPrivateKey::new(&mut rng, bits).expect("failed to...

I would like to implement a stage in my CI that checks if the bindings need to be updated or not. Something similar to `cargo fmt --check` would be nice...