forked from rusticata/tls-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.07 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
[package]
description = "Parser for the TLS protocol"
license = "MIT/Apache-2.0"
keywords = ["TLS","SSL","protocol","parser","nom"]
homepage = "https://github.com/rusticata/tls-parser"
repository = "https://github.com/rusticata/tls-parser.git"
documentation = "https://docs.rs/tls-parser"
name = "tls-parser"
version = "0.9.1"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
categories = ["network-programming", "parser-implementations"]
edition = "2018"
readme = "README.md"
build = "build.rs"
include = [
"LICENSE-*",
".gitignore",
".travis.yml",
"Cargo.toml",
"benches/*.rs",
"build.rs",
"src/*.rs",
"tests/*.rs",
"scripts/tls-ciphersuites.txt",
"scripts/extract-iana-ciphers.py"
]
[lib]
name = "tls_parser"
[features]
default = []
serialize = ["cookie-factory"]
[dependencies]
nom = "5.0"
phf = "0.7.16"
enum_primitive = "^0.1"
rusticata-macros = "2.0"
cookie-factory = { version="0.2", optional=true }
[dev-dependencies]
pretty_assertions = "0.6"
[build-dependencies]
phf_codegen = "0.7.16"
[badges]
travis-ci = { repository = "rusticata/tls-parser" }