Skip to content

Commit

Permalink
fix: Only enable used tokio features
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Jan 6, 2023
1 parent 9e50773 commit a7d1025
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion 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 @@ -52,7 +52,7 @@ thiserror = "1.0.38"
# TODO: Remove `serde-well-known`, it's being deprecated. See this commit:
# https://github.com/time-rs/time/commit/110e17bb8461816551f7197a2aa2e34c981fa22d
time = { version = "0.3.17", features = ["serde", "serde-human-readable", "serde-well-known"] }
tokio = { version = "1.24.1", features = ["full"] }
tokio = { version = "1.24.1", default-features = false, features = ["signal", "macros", "rt-multi-thread"] }
tokio-postgres = "0.7.7"
tower = "0.4.13"
tower-http = { version = "0.3.5", default-features = false, features = ["fs", "trace", "cors", "compression-full"] }
Expand Down

0 comments on commit a7d1025

Please # to comment.