mirror of
https://github.com/tokio-rs/axum.git
synced 2026-02-06 11:17:48 +00:00
Co-authored-by: David Pedersen <david.pdrsn@gmail.com> Co-authored-by: Yann Simon <yann.simon@commercetools.com>
64 lines
1.7 KiB
TOML
64 lines
1.7 KiB
TOML
[package]
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
description = "Core types and traits for axum"
|
|
edition = "2021"
|
|
rust-version = { workspace = true }
|
|
homepage = "https://github.com/tokio-rs/axum"
|
|
keywords = ["http", "web", "routing"]
|
|
license = "MIT"
|
|
name = "axum-core"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tokio-rs/axum"
|
|
version = "0.5.6" # remember to bump the version that axum and axum-extra depend on
|
|
|
|
[package.metadata.cargo_check_external_types]
|
|
allowed_external_types = [
|
|
# 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
|
|
|
|
[features]
|
|
tracing = ["dep:tracing"]
|
|
|
|
# Required for intra-doc links to resolve correctly
|
|
__private_docs = ["dep:tower-http"]
|
|
|
|
[dependencies]
|
|
bytes = "1.2"
|
|
futures-core = "0.3"
|
|
http = "1.0.0"
|
|
http-body = "1.0.0"
|
|
http-body-util = "0.1.0"
|
|
mime = "0.3.16"
|
|
pin-project-lite = "0.2.7"
|
|
sync_wrapper = "1.0.0"
|
|
tower-layer = "0.3"
|
|
tower-service = "0.3"
|
|
|
|
# optional dependencies
|
|
tower-http = { version = "0.6.0", optional = true, features = ["limit"] }
|
|
tracing = { version = "0.1.37", default-features = false, optional = true }
|
|
|
|
[dev-dependencies]
|
|
axum = { path = "../axum", features = ["__private"] }
|
|
axum-extra = { path = "../axum-extra", features = ["typed-header"] }
|
|
axum-macros = { path = "../axum-macros", features = ["__private"] }
|
|
hyper = "1.0.0"
|
|
serde = { version = "1.0.200", features = ["derive"] }
|
|
tokio = { version = "1.25.0", features = ["macros"] }
|
|
tower-http = { version = "0.6.0", features = ["limit"] }
|
|
|
|
[lints]
|
|
workspace = true
|