-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove dependency on cargo-lock #160
Conversation
Published to crates.io |
@Shnatsel what should be done about this? https://github.com/rustsec/rustsec/blob/465967c/cargo-audit/src/binary_deps.rs#L32 |
Ooh dammit. I forgot about that. That's actually required for cargo-audit to ingest this data. The implementation of conversion from this format to cargo-lock format (the one I deleted from this repo) will have to be moved into the rustsec repo. We still need the conversion, but at least that will break the cyclic dependency. Unfortunately I won't be able to help with it today. It is a very hot day here, my brain is fried. |
Aha, ok |
These drop the dependency on `cargo-lock` Vendors the code removed in rust-secure-code/cargo-auditable#160 into `binary_deps.rs`
These drop the dependency on `cargo-lock` Vendors the code removed in rust-secure-code/cargo-auditable#160 into `binary_deps.rs`
These drop the dependency on `cargo-lock` Vendors the code removed in rust-secure-code/cargo-auditable#160 into `binary_deps.rs`
These drop the dependency on `cargo-lock` Vendors the code removed in rust-secure-code/cargo-auditable#160 into `binary_deps.rs`
Removes the disabled-by-default and not very useful conversion to
Cargo.lock
format. It is supplanted by conversion to CycloneDX anyway.This simplifies the release process for
cargo audit
considerably, removing the cyclic dependency on this repository.I'm not sure I have bumped the versions correctly across the board - some crates depending on
auditable-serde
may require a bump as well.Supersedes #159