[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-serde"
version = "0.2.5"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable serde adapters and helper functions for Rust applications"
homepage = "https://github.com/qubit-ltd/rs-serde"
documentation = "https://docs.rs/qubit-serde"
readme = "README.md"
keywords = [
"serde",
"serialization",
"utility",
"qubit",
]
categories = [
"encoding",
"development-tools",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-serde"
[lib]
name = "qubit_serde"
path = "src/lib.rs"
test = true
doctest = true
[[test]]
name = "serde_tests"
path = "tests/serde_tests.rs"
[dependencies.qubit-datatype]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"