[package]
edition = "2024"
rust-version = "1.85.0"
name = "const-serialize"
version = "0.8.0-alpha.1"
authors = ["Evan Almloff"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A serialization framework that works in const contexts"
homepage = "https://dioxuslabs.com/learn/0.5/getting_started"
readme = "README.md"
keywords = [
"const",
"serialize",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dioxuslabs/dioxus"
resolver = "2"
[features]
serde = ["dep:serde"]
test-big-endian = []
[lib]
name = "const_serialize"
path = "src/lib.rs"
[[test]]
name = "enum"
path = "tests/enum.rs"
[[test]]
name = "eq"
path = "tests/eq.rs"
[[test]]
name = "lists"
path = "tests/lists.rs"
[[test]]
name = "primitive"
path = "tests/primitive.rs"
[[test]]
name = "str"
path = "tests/str.rs"
[[test]]
name = "structs"
path = "tests/structs.rs"
[[test]]
name = "tuples"
path = "tests/tuples.rs"
[dependencies.const-serialize-macro]
version = "=0.8.0-alpha.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
optional = true
[dev-dependencies.rand]
version = "0.9"