[package]
edition = "2021"
name = "rivet-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rivet framework crates and adapters."
readme = "README.md"
license = "MIT"
[lib]
name = "rivet_core"
path = "src/lib.rs"
[[example]]
name = "laravel_style_app"
path = "examples/laravel_style_app.rs"
[[example]]
name = "minimal_app"
path = "examples/minimal_app.rs"
[[example]]
name = "modular_provider_app"
path = "examples/modular_provider_app.rs"
[[test]]
name = "application_builder"
path = "tests/application_builder.rs"
[[test]]
name = "builder_lifecycle"
path = "tests/builder_lifecycle.rs"
[[test]]
name = "dependency_contracts"
path = "tests/dependency_contracts.rs"
[[test]]
name = "dispatch_contract"
path = "tests/dispatch_contract.rs"
[[test]]
name = "middleware_chain"
path = "tests/middleware_chain.rs"
[[test]]
name = "module_ordering"
path = "tests/module_ordering.rs"
[[test]]
name = "observability"
path = "tests/observability.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[dependencies.anyhow]
version = "1"
[dependencies.rivet-foundation]
version = "0.1.0"
[dependencies.rivet-http]
version = "0.1.0"
[dependencies.rivet-logger]
version = "0.1.0"
[dependencies.rivet-routing]
version = "0.1.0"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"