-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
64 lines (56 loc) · 1.35 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
59
60
61
62
63
64
[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.2"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
categories = ["network-programming", "parser-implementations"]
edition = "2018"
rust-version = "1.63"
readme = "README.md"
build = "build.rs"
include = [
"LICENSE-*",
".gitignore",
"Cargo.toml",
"benches/*.rs",
"build.rs",
"examples/*.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 = ["phf/std"]
unstable = []
[dependencies]
cookie-factory = { version="0.3", optional=true }
num_enum = "0.7.2"
nom = "7.0"
nom-derive = "0.10"
phf = { version="0.11", default-features=false }
rusticata-macros = "4.0"
[dev-dependencies]
clap = { version="4.5", features = ["derive"]}
hex-literal = "0.4"
pretty_assertions = "1.4"
[build-dependencies]
phf_codegen = "0.11"
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"nom",
"nom::*",
"nom_derive::*",
"num_enum::*",
"phf::map::Map",
"rusticata_macros",
]