-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCargo.toml
42 lines (36 loc) · 975 Bytes
/
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
[package]
name = "hex"
version = "0.4.3"
authors = ["KokaKiwi <[email protected]>"]
description = "Encoding and decoding data into/from hexadecimal representation."
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/hex/"
repository = "https://github.com/KokaKiwi/rust-hex"
edition = "2018"
readme = "README.md"
keywords = ["no_std", "hex"]
categories = ["encoding", "no-std"]
rust-version = "1.60"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["std"]
alloc = []
std = ["alloc"]
[[bench]]
name = "hex"
harness = false
[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
criterion = "0.5.1"
data-encoding = "2.6.0"
rustc-hex = "2.1.0"
faster-hex = "0.10.0"
version-sync = "0.9.5"
pretty_assertions = "1.4.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]