-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 852 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
[package]
description = "Parser for the Kerberos protocol"
license = "MIT/Apache-2.0"
keywords = ["Kerberos","parser","nom"]
homepage = "https://github.com/rusticata/kerberos-parser"
repository = "https://github.com/rusticata/kerberos-parser.git"
name = "kerberos-parser"
version = "0.9.0"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
categories = ["parser-implementations"]
readme = "README.md"
edition = "2018"
rust-version = "1.63"
include = [
"LICENSE-*",
"README.md",
".gitignore",
".travis.yml",
"Cargo.toml",
"assets/*.bin",
"src/*.rs",
"tests/*.rs"
]
[dependencies]
nom = "7.0"
rusticata-macros = "4.0"
der-parser = "10.0"
[badges]
travis-ci = { repository = "rusticata/kerberos-parser" }
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"asn1_rs",
"asn1_rs::*",
"nom",
"nom::*",
]