rasayan 1.0.0

Rasayan — biochemistry engine: enzyme kinetics, metabolic pathways, signal transduction, protein structure, membrane transport
Documentation
[package]
name = "rasayan"
version = "1.0.0"
edition = "2024"
rust-version = "1.89"
license = "GPL-3.0-only"
description = "Rasayan — biochemistry engine: enzyme kinetics, metabolic pathways, signal transduction, protein structure, membrane transport"
homepage = "https://github.com/MacCracken/rasayan"
repository = "https://github.com/MacCracken/rasayan"
readme = "README.md"
documentation = "https://docs.rs/rasayan"
keywords = ["biochemistry", "enzyme", "metabolism", "protein", "biology"]
categories = ["science", "simulation"]
exclude = [".claude/", ".github/", "docs/", "scripts/"]

[dependencies]
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
thiserror = { version = "2", default-features = false }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"], optional = true }
bote = { version = "0.50", default-features = false, optional = true }
hoosh = { version = "1.1", default-features = false, optional = true }
serde_json = { version = "1", optional = true }
tokio = { version = "1", features = ["rt"], optional = true }

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
serde_json = "1"

[features]
default = ["std"]
std = ["serde/std", "thiserror/std"]
full = ["std", "logging", "mcp", "ai"]
logging = ["dep:tracing-subscriber"]
mcp = ["dep:bote", "dep:serde_json"]
ai = ["dep:hoosh", "dep:serde_json", "dep:tokio"]

[[bench]]
name = "benchmarks"
harness = false