2021-11-30 21:46:13 +08:00
|
|
|
[package]
|
|
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
|
|
description = "Core types and traits for axum"
|
2022-06-18 02:11:35 +08:00
|
|
|
edition = "2021"
|
2021-11-30 21:46:13 +08:00
|
|
|
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"
|
2022-06-18 17:00:19 +08:00
|
|
|
version = "0.2.6" # remember to also bump the version that axum depends on
|
2021-11-30 21:46:13 +08:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
|
|
|
bytes = "1.0"
|
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
2022-04-29 23:28:24 +08:00
|
|
|
http = "0.2.7"
|
2022-06-08 21:47:57 +08:00
|
|
|
http-body = "0.4.5"
|
2021-11-30 21:46:13 +08:00
|
|
|
mime = "0.3.16"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-04-01 02:44:36 +08:00
|
|
|
axum = { path = "../axum", version = "0.5" }
|
2022-06-10 14:59:17 +08:00
|
|
|
futures-util = "0.3"
|
2021-11-30 21:46:13 +08:00
|
|
|
hyper = "0.14"
|
2022-03-01 07:04:33 +08:00
|
|
|
tokio = { version = "1.0", features = ["macros"] }
|