2024-12-07 00:19:14 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-hex"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Cuprate's hexadecimal data types"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["hinto-janai"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/types"
|
|
|
|
keywords = ["cuprate", "hex"]
|
|
|
|
|
|
|
|
[features]
|
2024-12-07 00:30:17 +00:00
|
|
|
default = []
|
2024-12-07 00:19:14 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-12-07 00:30:17 +00:00
|
|
|
hex = { workspace = true, features = ["alloc", "serde"] }
|
|
|
|
serde = { workspace = true, features = ["std", "derive"] }
|
2024-12-07 00:19:14 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|