[package]
edition = "2018"
rust-version = "1.63"
name = "ldap-parser"
version = "0.5.1"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
build = false
include = [
"LICENSE-*",
"README.md",
"CHANGELOG.md",
".gitignore",
".travis.yml",
"Cargo.toml",
"assets/*.bin",
"src/*.rs",
"tests/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for the LDAP protocol (RFC 4511)"
homepage = "https://github.com/rusticata/ldap-parser"
readme = "README.md"
keywords = [
"LDAP",
"parser",
"nom",
]
categories = ["parser-implementations"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rusticata/ldap-parser.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"asn1_rs",
"asn1_rs::*",
"nom",
"nom::*",
]
[lib]
name = "ldap_parser"
path = "src/lib.rs"
[[test]]
name = "ldap_filter"
path = "tests/ldap_filter.rs"
[[test]]
name = "ldap_messages"
path = "tests/ldap_messages.rs"
[dependencies.asn1-rs]
version = "0.7"
[dependencies.rusticata-macros]
version = "4.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.hex-literal]
version = "0.4"