-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 857 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
[package]
name = "snmp-parser"
version = "0.11.0"
description = "Parser for the SNMP protocol"
license = "MIT/Apache-2.0"
keywords = ["SNMP","protocol","parser","nom"]
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
homepage = "https://github.com/rusticata/snmp-parser"
repository = "https://github.com/rusticata/snmp-parser.git"
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]
asn1-rs = "0.7"
nom = "7.1"
rusticata-macros = "4.0"
thiserror = "2.0"
[dev-dependencies]
hex-literal = "0.4"
pretty_assertions = "1.0"
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"asn1_rs",
"asn1_rs::*",
"nom",
"nom::*",
]