Skip to content

Commit

Permalink
Include tokio fs feature
Browse files Browse the repository at this point in the history
We use it in one place where we read the encryption keys for match keys.

The reason why it was working before: `axum-server` [brought](https://github.com/programatik29/axum-server/blob/9d5adb28bfa483bda401714ad43f5f5c8d12cb61/Cargo.toml#L16) it.
  • Loading branch information
akoshelev committed Jan 18, 2024
1 parent f8ac522 commit 86b7622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipa-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ sha2 = "0.10"
shuttle-crate = { package = "shuttle", version = "0.6.1", optional = true }
thiserror = "1.0"
time = { version = "0.3", optional = true }
tokio = { version = "1.28", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.28", features = ["fs", "rt", "rt-multi-thread", "macros"] }
# TODO: axum-server holds onto 0.24 and we can't upgrade until they do. Or we move away from axum-server
tokio-rustls = { version = "0.24", optional = true }
tokio-stream = "0.1.14"
Expand Down

0 comments on commit 86b7622

Please sign in to comment.