1[package] 2name = "const-oid" 3version = "0.9.6" 4authors = ["RustCrypto Developers"] 5license = "Apache-2.0 OR MIT" 6description = """ 7Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard 8as defined in ITU X.660, with support for BER/DER encoding/decoding as well as 9heapless no_std (i.e. embedded) support 10""" 11documentation = "https://docs.rs/const-oid" 12repository = "https://github.com/RustCrypto/formats/tree/master/const-oid" 13categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"] 14keywords = ["iso", "iec", "itu", "oid"] 15readme = "README.md" 16edition = "2021" 17rust-version = "1.57" 18 19[dependencies] 20arbitrary = { version = "1.2", optional = true, features = ["derive"] } 21 22[dev-dependencies] 23hex-literal = "0.3" 24 25[features] 26std = [] 27db = [] 28 29[package.metadata.docs.rs] 30all-features = true 31rustdoc-args = ["--cfg", "docsrs"] 32