Files
axum/axum-core/Cargo.toml
T

63 lines
1.6 KiB
TOML
Raw Normal View History

[package]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Core types and traits for axum"
edition = "2021"
2024-09-28 21:21:41 +00:00
rust-version = { workspace = true }
homepage = "https://github.com/tokio-rs/axum"
keywords = ["http", "web", "framework"]
license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
2025-09-30 12:03:26 +02:00
version = "0.5.5" # remember to bump the version that axum and axum-extra depend on
2025-05-25 08:46:05 +02:00
[package.metadata.cargo-public-api-crates]
allowed = [
# not 1.0
"futures_core",
"tower_layer",
# >=1.0
"bytes",
"http",
"http_body",
]
[package.metadata.cargo-machete]
ignored = ["tower-http"] # See __private_docs feature
[package.metadata.docs.rs]
all-features = true
2023-03-12 11:15:58 +01:00
[features]
2023-04-11 16:57:49 +02:00
tracing = ["dep:tracing"]
# Required for intra-doc links to resolve correctly
2023-03-12 11:15:58 +01:00
__private_docs = ["dep:tower-http"]
[dependencies]
bytes = "1.2"
2025-01-05 09:34:14 +01:00
futures-core = "0.3"
http = "1.0.0"
http-body = "1.0.0"
http-body-util = "0.1.0"
mime = "0.3.16"
2023-03-14 09:13:19 +01:00
pin-project-lite = "0.2.7"
2024-03-24 03:46:20 +09:00
sync_wrapper = "1.0.0"
tower-layer = "0.3"
tower-service = "0.3"
2023-03-12 11:15:58 +01:00
# optional dependencies
2024-09-20 19:43:38 +02:00
tower-http = { version = "0.6.0", optional = true, features = ["limit"] }
2023-04-11 16:57:49 +02:00
tracing = { version = "0.1.37", default-features = false, optional = true }
2023-03-12 11:15:58 +01:00
[dev-dependencies]
2024-12-27 18:24:50 +01:00
axum = { path = "../axum", features = ["__private"] }
2023-04-11 16:09:48 +02:00
axum-extra = { path = "../axum-extra", features = ["typed-header"] }
2024-12-27 18:24:50 +01:00
axum-macros = { path = "../axum-macros", features = ["__private"] }
hyper = "1.0.0"
tokio = { version = "1.25.0", features = ["macros"] }
2024-09-20 19:43:38 +02:00
tower-http = { version = "0.6.0", features = ["limit"] }
2023-02-16 22:41:41 +01:00
2024-11-30 16:53:48 +01:00
[lints]
workspace = true