-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (32 loc) · 863 Bytes
/
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
[package]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
name = "deltachat_message_parser"
version = "0.11.0"
edition = "2018"
license = "MPL-2.0"
description = "email, link, hashtag, md and more - parsing for deltachat messages"
repository = "https://github.com/deltachat/message-parser"
keywords = ["markdown", "deltachat-messenger", "deltachat", "dc", "message-parser"]
categories = ["parser-implementations"]
include = [
"CHANGELOG.md",
"README.MD",
"LICENSE",
"spec.md",
"src/*",
"Cargo.toml",
"message_parser_wasm/Cargo.toml"
]
[dependencies]
nom = "7"
serde = "1.0.126"
serde_derive = "1.0.126"
unic-idna-punycode = "0.9.0"
[workspace]
members = ["message_parser_wasm"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "my_benchmark"
path="benches/my_benchmark.rs"
harness = false