skill-http 0.3.0

HTTP streaming server for Skill - REST API and web interface support
[dependencies.anyhow]
version = "1.0"

[dependencies.axum]
version = "0.7"

[dependencies.bytes]
version = "1.8"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.dirs]
version = "5.0"

[dependencies.futures]
version = "0.3"

[dependencies.hyper]
features = ["full"]
version = "1.5"

[dependencies.mime_guess]
optional = true
version = "2.0"

[dependencies.rust-embed]
features = ["interpolate-folder-path"]
optional = true
version = "8.5"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.shellexpand]
version = "3.1"

[dependencies.skill-runtime]
version = "0.3.0"

[dependencies.sqlx]
default-features = false
features = ["runtime-tokio", "sqlite", "migrate", "macros", "uuid"]
version = "0.8"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.40"

[dependencies.tokio-util]
features = ["io"]
version = "0.7"

[dependencies.toml]
version = "0.8"

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
features = ["trace", "cors", "compression-full"]
version = "0.6"

[dependencies.tracing]
version = "0.1"

[dependencies.utoipa]
features = ["axum_extras", "chrono", "uuid"]
version = "5.0"

[dependencies.utoipa-swagger-ui]
features = ["axum"]
version = "8.0"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.11"

[dev-dependencies.hyper]
features = ["full", "client"]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.14"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tower]
features = ["util"]
version = "0.5"

[features]
default = []
web-ui = ["dep:rust-embed", "dep:mime_guess"]

[lib]
name = "skill_http"
path = "src/lib.rs"

[package]
authors = ["Skill Engine Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-server", "development-tools"]
description = "HTTP streaming server for Skill - REST API and web interface support"
edition = "2021"
keywords = ["http", "api", "streaming", "axum", "skills"]
license = "MIT"
name = "skill-http"
readme = false
repository = "https://github.com/kubiyabot/skill"
rust-version = "1.75"
version = "0.3.0"

[[test]]
name = "api_config_tests"
path = "tests/api_config_tests.rs"

[[test]]
name = "api_execution_tests"
path = "tests/api_execution_tests.rs"

[[test]]
name = "api_services_tests"
path = "tests/api_services_tests.rs"

[[test]]
name = "api_skills_tests"
path = "tests/api_skills_tests.rs"