-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "io-smtp"
description = "Set of I/O-free Rust coroutines to manage SMTP streams"
version = "0.0.1"
authors = ["Clément DOUIN <pimalaya.org@posteo.net>"]
edition = "2021"
license = "MIT"
categories = ["email"]
keywords = ["email", "smtp", "client"]
homepage = "https://pimalaya.org"
documentation = "https://github.com/pimalaya/io-smtp"
repository = "https://github.com/pimalaya/io-smtp"
[features]
default = ["starttls", "ext_auth", "scram"]
starttls = ["smtp-codec/starttls"]
ext_auth = ["smtp-codec/ext_auth"]
scram = ["dep:base64", "dep:hmac", "dep:pbkdf2", "dep:rand", "dep:sha2"]
[dev-dependencies]
env_logger = "0.11"
io-stream = { version = "0.0.2", default-features = false, features = ["std"] }
rustls = "0.23"
rustls-platform-verifier = "0.6"
[dependencies]
base64 = { version = "0.22", optional = true }
hmac = { version = "0.12", optional = true }
io-stream = { version = "0.0.2", default-features = false }
log = "0.4"
memchr = "2.8"
pbkdf2 = { version = "0.12", optional = true }
rand = { version = "0.8", optional = true }
secrecy = "0.10"
sha2 = { version = "0.10", optional = true }
smtp-codec = { version = "0.2.0", features = ["starttls", "ext_auth", "quirk_crlf_relaxed"] }
thiserror = "2"
[patch.crates-io]
smtp-codec.git = "https://github.com/pimalaya/smtp-codec"