[package]
edition = "2021"
rust-version = "1.88"
name = "wavekat-flow"
version = "0.0.3"
authors = ["WaveKat"]
build = "build.rs"
exclude = ["tests/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Declarative call-flow ("Receptionist") document model for the WaveKat voice platform. Types are generated from the normative JSON Schema (schema/flow.v1.schema.json), the single source of truth shared with the @wavekat/flow-schema npm package.'
readme = "README.md"
keywords = [
"ivr",
"call-flow",
"voice",
"telephony",
]
categories = [
"data-structures",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/wavekat/wavekat-flow"
[lib]
name = "wavekat_flow"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"macros",
"parsing",
]
[dependencies.time-tz]
version = "2"
[dev-dependencies.jsonschema]
version = "0.29"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[build-dependencies.prettyplease]
version = "0.2"
[build-dependencies.schemars]
version = "0.8"
[build-dependencies.serde_json]
version = "1"
[build-dependencies.syn]
version = "2"
[build-dependencies.typify]
version = "0.4"