# 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.65" name = "bign256" version = "0.13.1" authors = ["RustCrypto Developers"] description = """ Pure Rust implementation of the Bign P-256 (a.k.a. bign-curve256v1) elliptic curve as defined in STB 34.101.45-2013, with general purpose curve arithmetic """ documentation = "https://docs.rs/bign256" readme = "README.md" keywords = [ "crypto", "ecc", "stb", "bign-curve256v1", "bignp256", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/elliptic-curves/tree/master/bign256" [[bench]] name = "field" harness = false [[bench]] name = "scalar" harness = false [dependencies.belt-hash] version = "0.1.0" optional = true default-features = false [dependencies.crypto-bigint] version = "0.5.5" optional = true [dependencies.elliptic-curve] version = "0.13.8" features = [ "hazmat", "sec1", ] [dependencies.primeorder] version = "0.13.5" optional = true [dependencies.rfc6979] version = "0.4" optional = true [dependencies.signature] version = "2" optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.hex] version = "0.4" [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.proptest] version = "1" [dev-dependencies.rand_core] version = "0.6" features = ["getrandom"] [features] alloc = [ "elliptic-curve/alloc", "primeorder?/alloc", ] arithmetic = [ "dep:primeorder", "elliptic-curve/arithmetic", ] default = [ "arithmetic", "pkcs8", "std", "dsa", ] dsa = [ "arithmetic", "dep:rfc6979", "dep:signature", "dep:belt-hash", "dep:crypto-bigint", ] pkcs8 = ["elliptic-curve/pkcs8"] std = [ "alloc", "elliptic-curve/std", "signature?/std", ]