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

[auto] Update cargo dependencies #124

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
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
127 changes: 73 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ rand = "0.8.5"
serde = "1.0.189"
socket2 = "0.5.5"
test-case = "3.1.0"
thiserror = "1.0.57"
thiserror = "2.0.3"
tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "net", "time", "sync", "io-util"] }
tokio-stream = "0.1.14"
tokio-util = "0.7.10"
Expand Down
4 changes: 4 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ yanked = "deny"
ignore = [
# yaml_rust is unmaintained, which is a dependency of twelf. Ignoring until its fixed
"RUSTSEC-2024-0320",
# instant is unmaintained, which is a dependency of tokio-eventfd. Ignoring until its fixed
"RUSTSEC-2024-0384",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's also wasm only which isn't a platform we support:

lightway$ cargo tree -p instant
warning: nothing to print.

To find dependencies that require specific target platforms, try to use option `--target all` first, and then narrow your search scope accordingly.
lightway$ cargo tree -p instant --target wasm32-unknown-unknown 
instant v0.1.13
└── cfg-if v1.0.0

]

[licenses]
Expand Down Expand Up @@ -56,6 +58,8 @@ skip = [
{ name = "serde_yaml", version = "0.8.26" },
{ name = "strsim", version = "0.10.0" },
{ name = "syn", version = "1.0.109" },
{ name = "thiserror", version = "1.0.69" },
{ name = "thiserror-impl", version = "1.0.69" },
{ name = "windows-sys", version = "0.52.0" },
]

Expand Down