32 lines
888 B
TOML
32 lines
888 B
TOML
|
|
[package]
|
||
|
|
name = "const-oid"
|
||
|
|
version = "0.9.2"
|
||
|
|
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"]
|