forked from jcreekmore/pem-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 1.03 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
[package]
authors = ["Jonathan Creekmore <jonathan@thecreekmores.org>"]
description = "Parse and encode PEM-encoded data."
documentation = "https://docs.rs/pem/"
homepage = "https://github.com/jcreekmore/pem-rs.git"
license = "MIT"
name = "pem"
readme = "README.md"
repository = "https://github.com/jcreekmore/pem-rs.git"
version = "3.0.0"
categories = [ "cryptography" ]
keywords = [
"no-std",
"no_std",
"pem",
]
edition = "2021"
rust-version = "1.60.0"
[features]
default = ["std"]
std = [
"base64/std",
# enable serde's std feature iff the serde and std features are both activated
"serde?/std",
]
serde = ["dep:serde"]
[dependencies.base64]
version = "0.21.0"
default-features = false
features = ["alloc"]
[dependencies.serde]
version = "1"
default-features = false
optional = true
[dev-dependencies]
criterion = "0.3.0"
proptest = { version = "1", default-features = false, features = ["std"] }
serde_json = "1"
[[bench]]
name = "pem_benchmark"
harness = false
[badges]
travis-ci = { repository = "jcreekmore/pem-rs" }