[package]
edition = "2024"
name = "threadloom-core"
version = "0.1.12"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core primitives and reactivity engine for the Threadloom framework. Best used with the Distaff CLI tool."
homepage = "https://github.com/Parth3930/threadloom"
documentation = "https://crates.io/crates/distaff"
readme = "README.md"
keywords = [
"core",
"framework",
"webassembly",
"threadloom",
"reactivity",
]
categories = [
"web-programming",
"wasm",
"gui",
]
license = "MIT"
repository = "https://github.com/Parth3930/threadloom"
resolver = "2"
[lib]
name = "threadloom_core"
path = "src/lib.rs"
[[bin]]
name = "bench_graph"
path = "src/bin/bench_graph.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"Window",
"Request",
"RequestInit",
"RequestMode",
"Response",
"Headers",
]