-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
48 lines (40 loc) · 1.19 KB
/
Cargo.toml
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
41
42
43
44
45
46
47
48
[package]
name = "rustyknife"
description = "Fast, robust and safe email parsing library"
version = "0.2.12"
authors = ["Jonathan Bastien-Filiatrault <[email protected]>"]
edition = "2018"
homepage = "https://github.com/zerospam/rustyknife"
repository = "https://github.com/zerospam/rustyknife.git"
license = "GPL-3.0+"
readme = "README.md"
categories = ["email", "parsing", "network-programming", "encoding"]
exclude = ["sphinx/source/*.so"]
[badges]
travis-ci = { repository = "zerospam/rustyknife" }
codecov = { repository = "zerospam/rustyknife", service = "github" }
[features]
default = ["quoted-string-rfc2047"]
quoted-string-rfc2047 = []
python = ["memmap", "pyo3"]
nightly = []
fuzz = ["afl"]
[lib]
crate-type = ["lib", "cdylib"]
[dependencies]
nom = "6.0"
base64 = "0.13"
idna = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional=true }
memmap = { version = "0.7.0", optional=true }
pyo3 = { version = "0.13", features = ["extension-module"], optional=true }
afl = { version = "0.8", optional=true }
encoding_rs = "0.8.33"
charset = "0.1.3"
[[bin]]
name = "fuzz_mailbox"
required-features = ["fuzz"]
[profile.release]
panic = "abort"
[package.metadata.docs.rs]
features = ["nightly"]