Update to axum-core 0.1
This changes tower-cookies
to have a public dependency on axum-core
instead of axum
.
axum-core
is designed to be a small crate that only contains the
FromRequest
and IntoResponse
traits. Because of the smaller API its
less likely to receive breaking changes. Therefore its recommended for
library to depend on that instead of axum
.
Note this is a breaking change since axum
0.3 doesn't know about
axum-core
.
Thank you @davidpdrsn 🙏