aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 368373d15cf229553561d660adc2a001c27b0ea5 (plain)
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
[package]
name = "const-oid"
version = "0.9.6"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = """
Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard
as defined in ITU X.660, with support for BER/DER encoding/decoding as well as
heapless no_std (i.e. embedded) support
"""
documentation = "https://docs.rs/const-oid"
repository = "https://github.com/RustCrypto/formats/tree/master/const-oid"
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
keywords = ["iso", "iec", "itu", "oid"]
readme = "README.md"
edition = "2021"
rust-version = "1.57"

[dependencies]
arbitrary = { version = "1.2", optional = true, features = ["derive"] }

[dev-dependencies]
hex-literal = "0.3"

[features]
std = []
db = []

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]