-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
51 lines (40 loc) · 1.16 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
[package]
name = "hex-conservative"
version = "0.3.0"
authors = ["Martin Habovštiak <[email protected]>", "Andrew Poelstra <[email protected]>"]
license = "CC0-1.0"
repository = "https://github.com/rust-bitcoin/hex-conservative"
documentation = "https://docs.rs/hex-conservative/"
description = "A hex encoding and decoding crate with a conservative MSRV and dependency policy."
categories = ["encoding"]
keywords = ["encoding", "hex", "hexadecimal"]
readme = "README.md"
edition = "2021"
rust-version = "1.63.0"
exclude = ["tests", "contrib"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = ["fuzz"]
[features]
default = ["std"]
std = ["alloc"]
alloc = []
[dependencies]
arrayvec = { version = "0.7.2", default-features = false }
serde = { version = "1.0", default-features = false, optional = true }
[dev-dependencies]
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0"
[[example]]
name = "hexy"
[[example]]
name = "custom"
[[example]]
name = "wrap_array_display_hex_trait"
[[example]]
name = "wrap_array_fmt_traits"
[[example]]
name = "serde"
required-features = ["std", "serde"]