-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 919 Bytes
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 919 Bytes
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
[package]
name = "ldap-parser"
version = "0.5.0"
description = "Parser for the LDAP protocol (RFC 4511)"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
edition = "2018"
license = "MIT/Apache-2.0"
keywords = ["LDAP","parser","nom"]
homepage = "https://github.com/rusticata/ldap-parser"
repository = "https://github.com/rusticata/ldap-parser.git"
categories = ["parser-implementations"]
readme = "README.md"
rust-version = "1.63"
include = [
"LICENSE-*",
"README.md",
"CHANGELOG.md",
".gitignore",
".travis.yml",
"Cargo.toml",
"assets/*.bin",
"src/*.rs",
"tests/*.rs"
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
asn1-rs = "0.7"
rusticata-macros = "4.0"
thiserror = "2.0"
[dev-dependencies]
hex-literal = "0.4"
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"asn1_rs",
"asn1_rs::*",
"nom",
"nom::*",
]