Skip to content

Commit

Permalink
remove unecessary rustls dep
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod authored and duesee committed Sep 8, 2024
1 parent 0d0b1ca commit cc3e161
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 247 deletions.
243 changes: 0 additions & 243 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude = [".github"]
[features]
default = ["stream"]
expose_stream = []
stream = ["dep:bytes", "dep:rustls", "dep:tokio", "dep:tokio-rustls"]
stream = ["dep:bytes", "dep:tokio", "dep:tokio-rustls"]

# <Forward to imap-codec>
arbitrary = ["imap-codec/arbitrary"]
Expand All @@ -32,10 +32,9 @@ ext_metadata = ["imap-codec/ext_metadata"]
[dependencies]
bytes = { version = "1.7.1", optional = true }
imap-codec = { version = "2.0.0-alpha.4", features = ["quirk_crlf_relaxed"] }
rustls = { version = "0.23.12", optional = true }
thiserror = "1.0.63"
tokio = { version = "1.40.0", optional = true, features = ["io-util", "macros", "net"] }
tokio-rustls = { version = "0.26.0", optional = true }
tokio-rustls = { version = "0.26.0", optional = true, default-features = false }
tracing = "0.1.40"

[dev-dependencies]
Expand Down
Loading

0 comments on commit cc3e161

Please sign in to comment.