Sergey "Shnatsel" Davidoff

Results 305 issues of Sergey "Shnatsel" Davidoff

`cargo metadata` shows a lot of progress information as it works - e.g. "cloning crates.io index" with a progress bar, or cloning a particular repo, also with a progress bar;...

There is a certain amount of data that is only available during or after the actual build, such as a hash of the resulting binary, the `RUSTFLAGS` used (not just...

enhancement
cargo-cyclonedx

The target for which the SBOM is generated should be recorded in it. It would be nice to also append it to the end of the SBOM filename, to make...

enhancement

There is a proof-of-concept implementation using https://github.com/containers/bubblewrap as the sandboxing backend See https://www.reddit.com/r/rust/comments/hjxh2a/partially_sandbox_your_rust_builds/

This project is using Docker to run sandboxed builds: https://www.reddit.com/r/rust/comments/dti647/announcing_cargowharf_docker_image_builder_for/ Apparently the sandboxing backends are also pluggable.

Hello, This is not actually an issue, but I see that Github discussions are disabled, so I'm posting here instead. As far as I understand the goals of the project,...

Parity settings passed from Erlang are simply ignored by the C backend, see https://github.com/tonyg/erlang-serial/blob/master/c_src/serial.c#L667 The C backend is also hardcoded to ignore parity errors and not to use parity in...

Looking at https://github.com/tonyg/erlang-serial/blob/master/c_src/serial.c#L88 maximum speed is hard-coded as 230400 baud, but there's no explanation given for said cap. We might need speeds up to 460800 baud in the current project,...

The example in the README uses the following code to build a query: ```rust // Query let mut rs = client .job() .query( project_id, QueryRequest::new(format!( "SELECT COUNT(*) AS c FROM...