[[bench]]
harness = false
name = "websocket_bench"
path = "benches/websocket_bench.rs"
required-features = ["websocket", "test-helpers"]
[[bench]]
name = "websocket_pubsub_bench"
path = "benches/websocket_pubsub_bench.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.21"
[dependencies.bytes]
version = "1.5"
[dependencies.diesel]
optional = true
version = "2.1"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
features = ["full"]
version = "1.0"
[dependencies.hyper-util]
features = ["full"]
version = "0.1"
[dependencies.multer]
version = "3.0"
[dependencies.r2d2]
optional = true
version = "0.8"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha1]
version = "0.10"
[dependencies.sqlx]
features = ["runtime-tokio-rustls"]
optional = true
version = "0.7"
[dependencies.tokio]
features = ["full"]
version = "1.35"
[dependencies.tracing]
version = "0.1"
[dependencies.ts-rs]
version = "8.1"
[dependencies.uuid]
features = ["v4"]
version = "1.0"
[dependencies.validator]
features = ["derive"]
version = "0.18"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.5"
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.reqwest]
features = ["json"]
version = "0.12"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tokio-tungstenite]
version = "0.24"
[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[features]
database = []
default = []
diesel-mysql = ["database", "diesel", "diesel/mysql", "diesel/r2d2", "r2d2"]
diesel-postgres = ["database", "diesel", "diesel/postgres", "diesel/r2d2", "r2d2"]
diesel-sqlite = ["database", "diesel", "diesel/sqlite", "diesel/r2d2", "r2d2"]
sqlx-mysql = ["database", "sqlx", "sqlx/mysql"]
sqlx-postgres = ["database", "sqlx", "sqlx/postgres"]
sqlx-sqlite = ["database", "sqlx", "sqlx/sqlite"]
test-helpers = []
websocket = []
[lib]
name = "ultimo"
path = "src/lib.rs"
[package]
authors = ["Ultimo Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "web-programming::http-server"]
description = "Modern Rust web framework with automatic TypeScript client generation"
edition = "2021"
homepage = "https://ultimo.dev"
keywords = ["web", "framework", "async", "rpc", "typescript"]
license = "MIT"
name = "ultimo"
readme = "README.md"
repository = "https://github.com/ultimo-rs/ultimo"
rust-version = "1.75.0"
version = "0.2.1"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "websocket_backpressure"
path = "tests/websocket_backpressure.rs"
[[test]]
name = "websocket_concurrency"
path = "tests/websocket_concurrency.rs"
[[test]]
name = "websocket_config"
path = "tests/websocket_config.rs"
[[test]]
name = "websocket_edge_cases"
path = "tests/websocket_edge_cases.rs"
[[test]]
name = "websocket_error_handling"
path = "tests/websocket_error_handling.rs"
[[test]]
name = "websocket_fragmentation"
path = "tests/websocket_fragmentation.rs"
[[test]]
name = "websocket_integration"
path = "tests/websocket_integration.rs"
[[test]]
name = "websocket_ping_pong"
path = "tests/websocket_ping_pong.rs"
[[test]]
name = "websocket_property"
path = "tests/websocket_property.rs"
[[test]]
name = "websocket_router_integration"
path = "tests/websocket_router_integration.rs"
[[test]]
name = "websocket_shutdown"
path = "tests/websocket_shutdown.rs"