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

Update windows-sys to 0.33, petgraph to 0.6 #326

Merged
merged 2 commits into from Mar 12, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Expand Up @@ -8,6 +8,7 @@ on:
pull_request:

env:
CARGO_INCREMENTAL: 0
RUST_TEST_THREADS: 1

jobs:
Expand All @@ -18,7 +19,7 @@ jobs:
os: [ubuntu, macos, windows]
channel: [1.49.0, stable, beta, nightly]
feature: [arc_lock, serde, deadlock_detection]
exclude:
exclude:
- feature: deadlock_detection
channel: '1.49.0'
include:
Expand All @@ -41,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target:
target:
- wasm32-unknown-unknown
- x86_64-fortanix-unknown-sgx
#- x86_64-unknown-redox
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
cfg-if = "1.0.0"
smallvec = "1.6.1"
petgraph = { version = "0.5.1", optional = true }
petgraph = { version = "0.6.0", optional = true }
thread-id = { version = "4.0.0", optional = true }
backtrace = { version = "0.3.60", optional = true }

Expand All @@ -23,7 +23,7 @@ libc = "0.2.95"
redox_syscall = "0.2.8"

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.32", features = [
windows-sys = { version = "0.33.0", features = [
"Win32_Foundation",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
Expand Down