jethrogb
jethrogb
Not sure what happened, this used to work. cc @VardhanThigle
When cross-compiling, it's useful to know which crates are compiled for the host and which for the target. The `[build-dependencies]` and `[dev-dependencies]` sections are already useful for filtering some of...
This PR adds support for all platforms by assuming there is no TTY.
With lessmsi 1.4: ``` $ wine lessmsi.exe x pkg.msi fixme:mscoree:CLRMetaHost_GetRuntime Unrecognized version L"v4.0" fixme:mscoree:CLRMetaHost_GetRuntime Unrecognized version L"v4.5" Extracting 'Z:\...\pkg.msi' to 'Z:\...\pkg'. fixme:ver:GetCurrentPackageId (0x32f6d8 (nil)): stub ``` (success) With lessmsi 1.5,...
The [current implementation of `ArcCell`](https://github.com/crossbeam-rs/crossbeam/blob/51522e2/src/sync/arc_cell.rs#L22-L29) is not lock-free. It uses a spin lock. I very much want to use this functionality, but I don't think this implementation should be included...
If you have two different dependencies that both depend on bindgen, but dependency A uses static linking and dependency B using dynamic linking, this will fail to build. You can...
Currently, `escape` allocates a new string for its output. It's often the case that you want to use the output of `escape` in a larger string to specify the regex....
e.g. to enable debug info
#228 always adds a `[patch]` section to Xargo's `Cargo.toml`s, but there is no way to override the crate it points to. It always uses the crate it find in rust-src,...
In #228, in `Blueprint::from` and `Blueprint::push`, several invocations of `Path::exists` were added. Since git sources are not available on the filesystem, this has broken builds using git sources after https://github.com/rust-lang/rust/pull/56092...