[package]
edition = "2024"
name = "ito-backend"
version = "0.1.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend state API for Ito — RESTful HTTP API for reading project state"
homepage = "https://github.com/withakay/ito"
readme = false
license = "MIT"
repository = "https://github.com/withakay/ito"
[package.metadata.dist]
dist = false
[lib]
name = "ito_backend"
path = "src/lib.rs"
[[test]]
name = "bootstrap_endpoints"
path = "tests/bootstrap_endpoints.rs"
[[test]]
name = "event_ingest"
path = "tests/event_ingest.rs"
[dependencies.axum]
version = "0.8"
features = []
[dependencies.axum-extra]
version = "0.10"
features = []
[dependencies.gethostname]
version = "0.5"
[dependencies.hex]
version = "0.4"
[dependencies.ito-core]
version = "0.1.13"
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.138"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
]
[dependencies.tower-http]
version = "0.6"
features = ["cors"]
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false
[dev-dependencies.tempfile]
version = "3.15.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
]