mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
23 lines
592 B
TOML
23 lines
592 B
TOML
[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]
|
|
default = ["serde"]
|
|
serde = ["dep:serde", "hex/serde"]
|
|
|
|
[dependencies]
|
|
hex = { workspace = true, features = ["alloc"] }
|
|
serde = { workspace = true, features = ["std", "derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true
|