forked from namecheap/fast_mail_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.26 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
49
50
51
52
[package]
edition = "2021"
name = "fast_mail_parser"
version = "0.2.5"
authors = ["Andrii Sokyrko <[email protected]>"]
license = "Apache-2.0"
description = "Very fast Python library for .eml files parsing."
homepage = "https://github.com/namecheap/fast_mail_parser"
repository = "https://github.com/namecheap/fast_mail_parser"
readme = "Readme.md"
keywords = ["parser", "email", "rfc822", "mime", "maildir"]
categories = ["email", "parsing"]
[package.metadata.maturin]
classifier = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.7.0"
maintainer-email = "[email protected]"
maintainer = "Andrii Sokyrko"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
strip = "debuginfo"
lto = true
codegen-units = 1
[lib]
name = "fast_mail_parser"
path = "src/fast_mail_parser.rs"
crate-type = ["cdylib"]
[dependencies]
mailparse = "0.13.8"
pyo3 = "0.16.5"
[features]
default = ["pyo3/extension-module"]