forked from KokaKiwi/rust-hex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 910 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
[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"]
[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.3"
rustc-hex = "2.1"
faster-hex = "0.5"
version-sync = "0.9"
pretty_assertions = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]