mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-26 13:39:23 +00:00
24 lines
592 B
TOML
24 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
|