[package]
edition = "2024"
name = "flows-math"
version = "0.0.5"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Building blocks for flow-based mathematical operations."
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: Mathematical Operations"
[features]
all = []
default = [
"all",
"std",
]
std = ["async-flow/std"]
unstable = []
[lib]
name = "flows_math"
path = "src/lib.rs"
[dependencies.async-flow]
version = "0.1.1"
features = ["tokio"]
default-features = false
[dependencies.tokio]
version = "1.49"
features = [
"macros",
"rt",
"sync",
]
default-features = false
[dev-dependencies.tokio]
version = "1.49"
features = [
"macros",
"rt",
"sync",
]
default-features = false
[target.'cfg(not(target_family = "wasm"))'.dependencies]
[target.'cfg(target_family = "wasm")'.dependencies]