mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
54d8439e35
* rc.2 * don't bump version of axum-macros * fix * Update axum/Cargo.toml Co-authored-by: Jonas Platte <jplatte+git@posteo.de> * undo release of axum-extra * fix Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
29 lines
880 B
TOML
29 lines
880 B
TOML
[package]
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
description = "Core types and traits for axum"
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
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"
|
|
version = "0.3.0-rc.2" # remember to also bump the version that axum depends on
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
bytes = "1.0"
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
|
http = "0.2.7"
|
|
http-body = "0.4.5"
|
|
mime = "0.3.16"
|
|
tower-layer = "0.3"
|
|
tower-service = "0.3"
|
|
|
|
[dev-dependencies]
|
|
axum = { path = "../axum", version = "0.6.0-rc.2" }
|
|
futures-util = "0.3"
|
|
hyper = "0.14"
|
|
tokio = { version = "1.0", features = ["macros"] }
|
|
tower-http = { version = "0.3.4", features = ["limit"] }
|