forked from duesee/imap-codec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 741 Bytes
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
[package]
name = "imap-codec"
description = "Low-level IMAP Parser and Serializer"
keywords = ["email", "imap", "parser", "codec"]
version = "0.5.0"
authors = ["Damian Poddebniak <poddebniak@fh-muenster.de>"]
repository = "https://github.com/duesee/imap-codec"
license = "MIT OR Apache-2.0"
edition = "2018"
[features]
default = []
serdex = ["serde", "chrono/serde"]
nomx = []
[dependencies]
arbitrary = { version = "1", optional = true, features = ["derive"] }
base64 = "0.13"
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
nom = "6"
abnf-core = "0.4"
rand = "0.8"
# Optional
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
assert_matches = "1.4"
ansi_term = "0.12"