Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "async-imap-wasi"
  3. version = "0.9.7"
  4. authors = ["dignifiedquire <me@dignifiedquire.com>"]
  5. documentation = "https://docs.rs/async-imap/"
  6. repository = "https://github.com/async-email/async-imap"
  7. homepage = "https://github.com/async-email/async-imap"
  8. description = "Async IMAP client for Rust"
  9. readme = "README.md"
  10. license = "MIT OR Apache-2.0"
  11. edition = "2021"
  12. keywords = ["email", "imap"]
  13. categories = ["email", "network-programming"]
  14. [badges]
  15. maintenance = { status = "actively-developed" }
  16. is-it-maintained-issue-resolution = { repository = "async-email/async-imap" }
  17. is-it-maintained-open-issues = { repository = "async-email/async-imap" }
  18. [features]
  19. default = ["runtime-async-std"]
  20. runtime-async-std = ["async-std"]
  21. runtime-tokio = ["tokio_wasi"]
  22. [dependencies]
  23. imap-proto = "0.16.4"
  24. nom = "7.0"
  25. base64 = "0.21"
  26. chrono = { version = "0.4", default-features = false, features = ["std"] }
  27. pin-utils = "0.1.0-alpha.4"
  28. futures = "0.3.15"
  29. self_cell = "1.0.1"
  30. stop-token = "0.7"
  31. bytes = "1"
  32. once_cell = "1.8.0"
  33. log = "0.4.8"
  34. thiserror = "1.0.9"
  35. async-channel = "2.0.0"
  36. async-std = { version = "1.8.0", default-features = false, features = ["std", "unstable"], optional = true }
  37. tokio_wasi = { version = "1", features = ["net", "sync", "time", "io-util"], optional = true }
  38. [dev-dependencies]
  39. pretty_assertions = "1.2"
  40. async-std = { version = "1.8.0", features = ["std", "attributes"] }
  41. tokio = { version = "1", features = ["rt-multi-thread", "macros"] }