forked from rusticata/tls-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (49 loc) · 1.23 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
53
54
55
56
57
58
[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.12.0"
authors = ["Pierre Chifflier <[email protected]>"]
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 = ["std"]
serialize = ["cookie-factory"]
std = []
unstable = []
[dependencies]
cookie-factory = { version="0.3", optional=true }
num_enum = "0.5.4"
nom = "7.0"
nom-derive = "0.10"
phf = "0.10"
rusticata-macros = "4.0"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
clap = { version="~2.34", default-features=false }
hex-literal = "0.3"
pretty_assertions = "1.0"
[build-dependencies]
phf_codegen = "0.10"
[badges]
travis-ci = { repository = "rusticata/tls-parser" }