[package]
edition = "2024"
name = "oxide-framework-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core runtime and framework logic for the Oxide web framework."
homepage = "https://github.com/i228808/oxide"
readme = "README.md"
license = "MIT"
repository = "https://github.com/i228808/oxide"
resolver = "2"
[lib]
name = "oxide_framework_core"
path = "src/lib.rs"
[[example]]
name = "bench_oxide"
path = "examples/bench_oxide.rs"
[[example]]
name = "bench_raw_axum"
path = "examples/bench_raw_axum.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "loadtest"
path = "examples/loadtest.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "controller_tests"
path = "tests/controller_tests.rs"
[[test]]
name = "di_lifecycles_test"
path = "tests/di_lifecycles_test.rs"
[[test]]
name = "hooks_and_middleware_tests"
path = "tests/hooks_and_middleware_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "overhead"
path = "benches/overhead.rs"
harness = false
[dependencies.axum]
version = "0.8"
[dependencies.cookie]
version = "0.18"
[dependencies.jsonwebtoken]
version = "9"
[dependencies.oxide-framework-macros]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"catch-panic",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]