16 lines
515 B
TOML
16 lines
515 B
TOML
[package]
|
|
name = "mizan-axum"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "axum HTTP adapter for Mizan — typed RPC dispatch + context-bundle fetch on top of mizan-core's compile-time function registry."
|
|
license = "Elastic-2.0"
|
|
|
|
[dependencies]
|
|
mizan-core = { path = "../../cores/mizan-rust" }
|
|
axum = "0.7"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tower = "0.5"
|
|
tower-http = { version = "0.6", features = ["trace"] }
|