You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To Reproduce:
To find ring as a dependency, search Cargo.lock for "ring".
To see that ring does not appear in our binary, run cargo bloat --release --crates -n 100 and notice that ring is absent. Alternatively, you can run cargo tree -i ring and see that ring is absent.
Expected behavior: ring should not be flagged by FOSSA, and should not appear in Cargo.lock
The text was updated successfully, but these errors were encountered:
seanmonstar/reqwest#2335 notes that this is a bug in cargo (rust-lang/cargo#10801) where dependencies that are part of disabled features are listed in Cargo.lock even though they are not present in the binary.
Describe the bug
ring
is a transitive dependency with a license incompatible with outs. It is being flagged by our CI.ring
appears inCargo.lock
, but does not actually appear in the web5 binary.ring
is a transitive dependency ofreqwest
. See the dependency tree:To Reproduce:
To find
ring
as a dependency, searchCargo.lock
for "ring".To see that
ring
does not appear in our binary, runcargo bloat --release --crates -n 100
and notice thatring
is absent. Alternatively, you can runcargo tree -i ring
and see thatring
is absent.Expected behavior:
ring
should not be flagged by FOSSA, and should not appear in Cargo.lockThe text was updated successfully, but these errors were encountered: