# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" rust-version = "1.63" name = "tls-parser" version = "0.12.2" authors = ["Pierre Chifflier "] 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", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Parser for the TLS protocol" homepage = "https://github.com/rusticata/tls-parser" documentation = "https://docs.rs/tls-parser" readme = "README.md" keywords = [ "TLS", "SSL", "protocol", "parser", "nom", ] categories = [ "network-programming", "parser-implementations", ] license = "MIT/Apache-2.0" repository = "https://github.com/rusticata/tls-parser.git" [package.metadata.cargo_check_external_types] allowed_external_types = [ "nom", "nom::*", "nom_derive::*", "num_enum::*", "phf::map::Map", "rusticata_macros", ] [lib] name = "tls_parser" path = "src/lib.rs" [[example]] name = "get-ciphersuite-info" path = "examples/get-ciphersuite-info.rs" [[test]] name = "certificate_transparency" path = "tests/certificate_transparency.rs" [[test]] name = "tls_dh" path = "tests/tls_dh.rs" [[test]] name = "tls_extensions" path = "tests/tls_extensions.rs" [[test]] name = "tls_handshake" path = "tests/tls_handshake.rs" [[test]] name = "tls_tls13" path = "tests/tls_tls13.rs" [[bench]] name = "bench_dh" path = "benches/bench_dh.rs" [[bench]] name = "bench_handshake" path = "benches/bench_handshake.rs" [dependencies.cookie-factory] version = "0.3" optional = true [dependencies.nom] version = "7.0" [dependencies.nom-derive] version = "0.10" [dependencies.num_enum] version = "0.7.2" [dependencies.phf] version = "0.11" default-features = false [dependencies.rusticata-macros] version = "4.0" [dev-dependencies.clap] version = "4.5" features = ["derive"] [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.pretty_assertions] version = "1.0" [build-dependencies.phf_codegen] version = "0.11" [features] default = ["std"] serialize = ["cookie-factory"] std = ["phf/std"] unstable = []