blob: 30c31287205dfa0200a15a33bf91d34ca416f0ae [file] [log] [blame]
Yiming Jinga9f0d292021-07-22 13:22:57 -07001[package]
2name = "oid-registry"
Joel Galensonbc8770b2021-09-22 11:12:48 -07003version = "0.2.0"
Yiming Jinga9f0d292021-07-22 13:22:57 -07004authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
5license = "MIT/Apache-2.0"
6description = "Object Identifier (OID) database"
7keywords = ["BER", "DER", "OID"]
8homepage = "https://github.com/rusticata/oid-registry"
9repository = "https://github.com/rusticata/oid-registry.git"
10edition = "2018"
11build = "build.rs"
12readme = "README.md"
13
14include = [
15 "LICENSE-*",
16 "README.md",
17 ".gitignore",
18 "Cargo.toml",
19 "assets/*.txt",
20 "build.rs",
21 "src/*.rs",
22]
23
24[package.metadata.docs.rs]
25all-features = true
26rustdoc-args = ["--cfg", "docsrs"]
27
28[features]
29default = []
30crypto = ["kdf","pkcs1","pkcs7","pkcs9","pkcs12","nist_algs","x962"]
31kdf = []
32ms_spc = []
33nist_algs = []
34pkcs1 = []
35pkcs7 = []
36pkcs9 = []
37pkcs12 = []
38x509 = []
39x962 = []
40
41[dependencies]
Joel Galensonbc8770b2021-09-22 11:12:48 -070042der-parser = "6.0.0"