[package]
edition = "2024"
name = "flows-json"
version = "0.0.6"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Building blocks for flow-based JSON encoding & decoding."
homepage = "https://flows.rs"
readme = "README.md"
keywords = [
"fbp",
"flow",
"dataflow",
"async",
]
categories = [
"asynchronous",
"concurrency",
"network-programming",
"no-std",
]
license = "Unlicense"
repository = "https://github.com/artob/flows.rs"
resolver = "2"
[package.metadata.readme]
title = "Flows.rs: JSON Encoding & Decoding"
[features]
all = []
default = [
"all",
"std",
]
std = [
"async-flow/std",
"serde_json/std",
]
unstable = []
[lib]
name = "flows_json"
path = "src/lib.rs"
[dependencies.async-flow]
version = "0.1.1"
features = [
"tokio",
"serde",
]
default-features = false
[dependencies.serde_json]
version = "1"
features = ["alloc"]
default-features = false
[target.'cfg(not(target_family = "wasm"))'.dependencies]
[target.'cfg(target_family = "wasm")'.dependencies]