This PR adds symbolic links for the LICENSE-APACHE and LICENSE-MIT files into the quinn, quinn-proto, and quinn-udp workspace members so that cargo package / cargo publish picks them up and includes them when publishing crates.
Both the Apache-2.0 and the MIT license requires that (re)distributed sources contain a copy of the license text. Not including the license text is a problem, especially for Linux distributions that package this crate as a dependency, for example, for the HTTP/3 support in the reqwest crate.
I have not added a symlink into workspace members that have publish = false set in their cargo metadata.
This PR adds symbolic links for the
LICENSE-APACHE
andLICENSE-MIT
files into thequinn
,quinn-proto
, andquinn-udp
workspace members so thatcargo package
/cargo publish
picks them up and includes them when publishing crates.Both the Apache-2.0 and the MIT license requires that (re)distributed sources contain a copy of the license text. Not including the license text is a problem, especially for Linux distributions that package this crate as a dependency, for example, for the HTTP/3 support in the
reqwest
crate.I have not added a symlink into workspace members that have
publish = false
set in their cargo metadata.