File: Cargo.toml.orig

package info (click to toggle)
rust-tls-parser 0.12.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 500 kB
  • sloc: python: 151; makefile: 2
file content (64 lines) | stat: -rw-r--r-- 1,380 bytes parent folder | download | duplicates (2)
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.0"

[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",
]