# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "cmpv2" version = "0.3.0-pre.0" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the Certificate Management Protocol (CMP) as described in RFC 4210 """ homepage = "https://github.com/RustCrypto/formats/tree/master/cmpv2" readme = "README.md" keywords = ["crypto"] categories = [ "cryptography", "data-structures", "encoding", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/formats" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "cmpv2" path = "src/lib.rs" [[test]] name = "cert_req" path = "tests/cert_req.rs" [[test]] name = "genm_req" path = "tests/genm_req.rs" [[test]] name = "init_req" path = "tests/init_req.rs" [[test]] name = "key_update_req" path = "tests/key_update_req.rs" [[test]] name = "p10cr_req" path = "tests/p10cr_req.rs" [[test]] name = "rr_req" path = "tests/rr_req.rs" [dependencies.crmf] version = "=0.3.0-pre.0" [dependencies.der] version = "0.8.0-rc.0" features = [ "alloc", "derive", "flagset", "oid", ] [dependencies.spki] version = "0.8.0-rc.0" [dependencies.x509-cert] version = "=0.3.0-pre.0" default-features = false [dev-dependencies.const-oid] version = "0.10.0-rc.0" features = ["db"] [dev-dependencies.hex-literal] version = "0.4" [features] alloc = ["der/alloc"] pem = [ "alloc", "der/pem", ] std = [ "der/std", "spki/std", ]