12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [package]
- name = "async-imap-wasi"
- version = "0.9.7"
- authors = ["dignifiedquire <[email protected]>"]
- documentation = "https://docs.rs/async-imap/"
- repository = "https://github.com/async-email/async-imap"
- homepage = "https://github.com/async-email/async-imap"
- description = "Async IMAP client for Rust"
- readme = "README.md"
- license = "MIT OR Apache-2.0"
- edition = "2021"
- keywords = ["email", "imap"]
- categories = ["email", "network-programming"]
- [badges]
- maintenance = { status = "actively-developed" }
- is-it-maintained-issue-resolution = { repository = "async-email/async-imap" }
- is-it-maintained-open-issues = { repository = "async-email/async-imap" }
- [features]
- default = ["runtime-async-std"]
- runtime-async-std = ["async-std"]
- runtime-tokio = ["tokio_wasi"]
- [dependencies]
- imap-proto = "0.16.4"
- nom = "7.0"
- base64 = "0.21"
- chrono = { version = "0.4", default-features = false, features = ["std"] }
- pin-utils = "0.1.0-alpha.4"
- futures = "0.3.15"
- self_cell = "1.0.1"
- stop-token = "0.7"
- bytes = "1"
- once_cell = "1.8.0"
- log = "0.4.8"
- thiserror = "1.0.9"
- async-channel = "2.0.0"
- async-std = { version = "1.8.0", default-features = false, features = ["std", "unstable"], optional = true }
- tokio_wasi = { version = "1", features = ["net", "sync", "time", "io-util"], optional = true }
- [dev-dependencies]
- pretty_assertions = "1.2"
- async-std = { version = "1.8.0", features = ["std", "attributes"] }
- tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|