[package]
edition = "2021"
rust-version = "1.58.0"
name = "hexstring"
version = "0.1.5"
authors = ["Alexis Le Provost <alexis.leprovost@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An utility library for handling hexadecimal string"
homepage = "https://github.com/alekece/hexstring-rs"
readme = "README.md"
keywords = [
"hex",
"hexadecimal",
"string",
"utility",
]
license = "MIT"
repository = "https://github.com/alekece/hexstring-rs"
[badges.maintenance]
status = "actively-developed"
[features]
default = ["serde"]
[lib]
name = "hexstring"
path = "src/lib.rs"
[dependencies.derive_more]
version = "2.1.1"
features = ["display"]
default-features = false
[dependencies.hex]
version = "0.4.3"
[dependencies.serde]
version = "1.0.228"
features = [
"std",
"derive",
]
optional = true
default-features = false
[dev-dependencies.serde_json]
version = "1.0.149"