-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathCargo.toml
57 lines (51 loc) · 1.95 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "sm2"
version = "0.14.0-pre"
description = """
Pure Rust implementation of the SM2 elliptic curve as defined in the Chinese
national standard GM/T 0003-2012 as well as ISO/IEC 14888. Includes support for
the SM2DSA Digital Signature Algorithm.
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/sm2"
homepage = "https://github.com/RustCrypto/elliptic-curves/tree/master/sm2"
repository = "https://github.com/RustCrypto/elliptic-curves"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "shangmi", "signature", "encryption"]
edition = "2024"
rust-version = "1.85"
[dependencies]
elliptic-curve = { version = "0.14.0-rc.0", default-features = false, features = [
"sec1",
] }
rand_core = { version = "0.9", default-features = false }
# optional dependencies
primeorder = { version = "=0.14.0-pre.2", optional = true, path = "../primeorder" }
rfc6979 = { version = "=0.5.0-pre.4", optional = true }
serdect = { version = "0.3", optional = true, default-features = false }
signature = { version = "=2.3.0-pre.6", optional = true, features = [
"rand_core",
"digest",
] }
sm3 = { version = "=0.5.0-pre.5", optional = true, default-features = false }
[dev-dependencies]
hex-literal = "1"
proptest = "1"
rand_core = { version = "0.9", features = ["os_rng"] }
rand = "0.9"
[features]
default = ["arithmetic", "dsa", "pke", "pem"]
alloc = ["elliptic-curve/alloc", "signature?/alloc", "elliptic-curve/alloc"]
std = ["alloc", "elliptic-curve/std", "signature?/std"]
arithmetic = ["dep:primeorder", "elliptic-curve/arithmetic"]
bits = ["arithmetic", "elliptic-curve/bits"]
dsa = ["arithmetic", "dep:rfc6979", "dep:signature", "dep:sm3"]
pke = ["arithmetic", "dep:sm3"]
pem = ["elliptic-curve/pem", "pkcs8"]
pkcs8 = ["elliptic-curve/pkcs8"]
serde = ["elliptic-curve/serde", "primeorder?/serde", "serdect"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]