Skip to content

Commit

Permalink
build: disable unsused features from flume (#653)
Browse files Browse the repository at this point in the history
Co-authored-by: Domenic Quirl <DomenicQuirl@protonmail.com>
  • Loading branch information
domenicquirl and Domenic Quirl authored Jul 13, 2023
1 parent 93988da commit f0cb060
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 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 rumqttc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ futures-util = { version = "0.3", default_features = false, features = ["std"] }
tokio = { version = "1.0", features = ["rt", "macros", "io-util", "net", "time"] }
bytes = "1.0"
log = "0.4"
flume = "0.10"
flume = { version = "0.10", default-features = false, features = ["async"]}
thiserror = "1"

# Optional
Expand Down
2 changes: 1 addition & 1 deletion rumqttd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tokio = { version = "1.0", features = ["rt", "time", "net", "io-util", "macros"]
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.66"
bytes = { version = "1", features = ["serde"] }
flume = "0.10.9"
flume = { version = "0.10.9", default-features = false, features = ["async"]}
slab = "0.4.3"
thiserror = "1.0.24"
tokio-util = { version = "0.7", features = ["codec"], optional = true }
Expand Down

0 comments on commit f0cb060

Please sign in to comment.