Skip to content
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

fix: MSRV fix by pinning idna_adapter version #722

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ serde_json = "1"
thiserror = "1"
# only for structured logging
tracing = { version = "0.1", features = ["log"] }
url = "2"
uuid = "1.10.0"
z85 = "3.0.5"

Expand Down Expand Up @@ -144,6 +143,13 @@ integration-test = [
[dependencies.home]
version = "=0.5.9"

# force URL to use unicode-rs instead of ICU4X otherwise we require MSRV 1.81
# from docs: compared to ICU4X, this makes build times faster, MSRV lower, binary size larger, and
# run-time performance slower.
[dependencies.url]
version = "2"
idna_adapter = "=1.1.0"

[build-dependencies]
rustc_version = "0.4.1"

Expand Down
Loading